Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygencolor_stubs.c
Go to the documentation of this file.
00001 /* $Id: color.c 24690 2006-11-05 21:19:53Z greatlrd $ 00002 * 00003 * COPYRIGHT: See COPYING in the top level directory 00004 * PROJECT: ReactOS DirectX 00005 * FILE: ddraw/color/color.c 00006 * PURPOSE: IDirectDrawColorControl Implementation 00007 * PROGRAMMER: Maarten Bosma 00008 * 00009 */ 00010 00011 #include "rosdraw.h" 00012 00013 ULONG WINAPI 00014 DirectDrawColorControl_AddRef( LPDIRECTDRAWCOLORCONTROL iface) 00015 { 00016 DX_WINDBG_trace(); 00017 00018 DX_STUB; 00019 } 00020 00021 ULONG WINAPI 00022 DirectDrawColorControl_Release( LPDIRECTDRAWCOLORCONTROL iface) 00023 { 00024 LPDDRAWI_DDCOLORCONTROL_INT This = (LPDDRAWI_DDCOLORCONTROL_INT)iface; 00025 00026 DX_WINDBG_trace(); 00027 /* FIXME 00028 This is not right exiame how it should be done 00029 */ 00030 DX_STUB_str("FIXME This is not right exiame how it should be done\n"); 00031 return This->dwIntRefCnt; 00032 } 00033 00034 HRESULT WINAPI 00035 DirectDrawColorControl_QueryInterface( LPDIRECTDRAWCOLORCONTROL iface, 00036 REFIID riid, 00037 LPVOID* ppvObj) 00038 { 00039 DX_WINDBG_trace(); 00040 DX_STUB; 00041 } 00042 00043 HRESULT WINAPI 00044 DirectDrawColorControl_GetColorControls( LPDIRECTDRAWCOLORCONTROL iface, 00045 LPDDCOLORCONTROL lpColorControl) 00046 { 00047 DX_WINDBG_trace(); 00048 DX_STUB; 00049 } 00050 00051 HRESULT WINAPI 00052 DirectDrawColorControl_SetColorControls( LPDIRECTDRAWCOLORCONTROL iface, 00053 LPDDCOLORCONTROL lpColorControl) 00054 { 00055 DX_WINDBG_trace(); 00056 DX_STUB; 00057 } 00058 00059 IDirectDrawColorControlVtbl DirectDrawColorControl_Vtable = 00060 { 00061 DirectDrawColorControl_QueryInterface, 00062 DirectDrawColorControl_AddRef, 00063 DirectDrawColorControl_Release, 00064 DirectDrawColorControl_GetColorControls, 00065 DirectDrawColorControl_SetColorControls 00066 }; Generated on Sun May 27 2012 04:21:23 for ReactOS by
1.7.6.1
|