Delete all Trailing spaces in code.
[reactos.git] / reactos / dll / directx / ddraw / Color / color_stubs.c
1 /* $Id: color.c 24690 2006-11-05 21:19:53Z greatlrd $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS DirectX
5 * FILE: ddraw/color/color.c
6 * PURPOSE: IDirectDrawColorControl Implementation
7 * PROGRAMMER: Maarten Bosma
8 *
9 */
10
11 #include "rosdraw.h"
12
13 ULONG WINAPI
14 DirectDrawColorControl_AddRef( LPDIRECTDRAWCOLORCONTROL iface)
15 {
16 DX_WINDBG_trace();
17
18 DX_STUB;
19 }
20
21 ULONG WINAPI
22 DirectDrawColorControl_Release( LPDIRECTDRAWCOLORCONTROL iface)
23 {
24 LPDDRAWI_DDCOLORCONTROL_INT This = (LPDDRAWI_DDCOLORCONTROL_INT)iface;
25
26 DX_WINDBG_trace();
27 /* FIXME
28 This is not right exiame how it should be done
29 */
30 DX_STUB_str("FIXME This is not right exiame how it should be done\n");
31 return This->dwIntRefCnt;
32 }
33
34 HRESULT WINAPI
35 DirectDrawColorControl_QueryInterface( LPDIRECTDRAWCOLORCONTROL iface,
36 REFIID riid,
37 LPVOID* ppvObj)
38 {
39 DX_WINDBG_trace();
40 DX_STUB;
41 }
42
43 HRESULT WINAPI
44 DirectDrawColorControl_GetColorControls( LPDIRECTDRAWCOLORCONTROL iface,
45 LPDDCOLORCONTROL lpColorControl)
46 {
47 DX_WINDBG_trace();
48 DX_STUB;
49 }
50
51 HRESULT WINAPI
52 DirectDrawColorControl_SetColorControls( LPDIRECTDRAWCOLORCONTROL iface,
53 LPDDCOLORCONTROL lpColorControl)
54 {
55 DX_WINDBG_trace();
56 DX_STUB;
57 }
58
59 IDirectDrawColorControlVtbl DirectDrawColorControl_Vtable =
60 {
61 DirectDrawColorControl_QueryInterface,
62 DirectDrawColorControl_AddRef,
63 DirectDrawColorControl_Release,
64 DirectDrawColorControl_GetColorControls,
65 DirectDrawColorControl_SetColorControls
66 };