Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenbuffer.c
Go to the documentation of this file.
00001 /* 00002 * uxtheme Double-buffered Drawing API 00003 * 00004 * Copyright (C) 2008 Reece H. Dunn 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU Lesser General Public 00008 * License as published by the Free Software Foundation; either 00009 * version 2.1 of the License, or (at your option) any later version. 00010 * 00011 * This library is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 * Lesser General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU Lesser General Public 00017 * License along with this library; if not, write to the Free Software 00018 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00019 */ 00020 00021 #include "uxthemep.h" 00022 #include "wine/debug.h" 00023 00024 WINE_DEFAULT_DEBUG_CHANNEL(uxtheme); 00025 00026 /*********************************************************************** 00027 * BufferedPaintInit (UXTHEME.@) 00028 */ 00029 HRESULT WINAPI BufferedPaintInit(VOID) 00030 { 00031 FIXME("Stub ()\n"); 00032 return S_OK; 00033 } 00034 00035 /*********************************************************************** 00036 * BufferedPaintUnInit (UXTHEME.@) 00037 */ 00038 HRESULT WINAPI BufferedPaintUnInit(VOID) 00039 { 00040 FIXME("Stub ()\n"); 00041 return S_OK; 00042 } 00043 00044 /*********************************************************************** 00045 * BeginBufferedPaint (UXTHEME.@) 00046 */ 00047 HPAINTBUFFER WINAPI BeginBufferedPaint(HDC hdcTarget, 00048 const RECT * prcTarget, 00049 BP_BUFFERFORMAT dwFormat, 00050 BP_PAINTPARAMS *pPaintParams, 00051 HDC *phdc) 00052 { 00053 static int i; 00054 00055 TRACE("Stub (%p %p %d %p %p)\n", hdcTarget, prcTarget, dwFormat, 00056 pPaintParams, phdc); 00057 00058 if (!i++) 00059 FIXME("Stub (%p %p %d %p %p)\n", hdcTarget, prcTarget, dwFormat, 00060 pPaintParams, phdc); 00061 return NULL; 00062 } 00063 00064 00065 /*********************************************************************** 00066 * EndBufferedPaint (UXTHEME.@) 00067 */ 00068 HRESULT WINAPI EndBufferedPaint(HPAINTBUFFER hPaintBuffer, BOOL fUpdateTarget) 00069 { 00070 FIXME("Stub (%p %d)\n", hPaintBuffer, fUpdateTarget); 00071 return S_OK; 00072 } Generated on Sat May 26 2012 04:20:06 for ReactOS by
1.7.6.1
|