Delete all Trailing spaces in code.
[reactos.git] / reactos / dll / directx / ddraw / Gamma / gamma_stubs.c
1 /* $Id: gamma.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/gamma/gamma_stubs.c
6 * PURPOSE: IDirectDrawGamma Implementation
7 * PROGRAMMER: Maarten Bosma
8 *
9 */
10
11 #include "rosdraw.h"
12
13 ULONG WINAPI
14 DirectDrawGammaControl_AddRef( LPDIRECTDRAWGAMMACONTROL iface)
15 {
16 DX_WINDBG_trace();
17
18 DX_STUB;
19 }
20
21 ULONG WINAPI
22 DirectDrawGammaControl_Release( LPDIRECTDRAWGAMMACONTROL iface)
23 {
24 LPDDRAWI_DDGAMMACONTROL_INT This = (LPDDRAWI_DDGAMMACONTROL_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 DirectDrawGammaControl_QueryInterface( LPDIRECTDRAWGAMMACONTROL iface,
36 REFIID riid,
37 LPVOID *ppObj)
38 {
39 DX_WINDBG_trace();
40 DX_STUB;
41 }
42
43 HRESULT WINAPI
44 DirectDrawGammaControl_GetGammaRamp( LPDIRECTDRAWGAMMACONTROL iface,
45 DWORD dwFlags,
46 LPDDGAMMARAMP lpGammaRamp)
47 {
48 DX_WINDBG_trace();
49 DX_STUB;
50 }
51
52 HRESULT WINAPI
53 DirectDrawGammaControl_SetGammaRamp( LPDIRECTDRAWGAMMACONTROL iface,
54 DWORD dwFlags,
55 LPDDGAMMARAMP lpGammaRamp)
56 {
57 DX_WINDBG_trace();
58 DX_STUB;
59 }
60
61 IDirectDrawGammaControlVtbl DirectDrawGammaControl_Vtable =
62 {
63 DirectDrawGammaControl_QueryInterface,
64 DirectDrawGammaControl_AddRef,
65 DirectDrawGammaControl_Release,
66 DirectDrawGammaControl_GetGammaRamp,
67 DirectDrawGammaControl_SetGammaRamp
68 };