Implemented thunks for IDirectDrawSurface and IDirectDraw. This isn't good code,...
[reactos.git] / reactos / lib / ddraw / main / color.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS
5 * FILE: lib/ddraw/main/color.c
6 * PURPOSE: IDirectDrawColorControl Implementation
7 * PROGRAMMER: Maarten Bosma
8 *
9 */
10
11 #include "rosdraw.h"
12
13 HRESULT WINAPI
14 Main_DirectDrawColorControl_QueryInterface(LPDIRECTDRAWCOLORCONTROL iface,
15 REFIID riid, LPVOID* ppvObj)
16 {
17 DX_STUB;
18 }
19
20 ULONG WINAPI
21 Main_DirectDrawColorControl_AddRef(LPDIRECTDRAWCOLORCONTROL iface)
22 {
23 DX_STUB;
24 }
25
26 ULONG WINAPI
27 Main_DirectDrawColorControl_Release(LPDIRECTDRAWCOLORCONTROL iface)
28 {
29 DX_STUB;
30 }
31
32 HRESULT WINAPI
33 Main_DirectDrawColorControl_GetColorControls(LPDIRECTDRAWCOLORCONTROL iface, LPDDCOLORCONTROL lpColorControl)
34 {
35 DX_STUB;
36 }
37
38 HRESULT WINAPI
39 Main_DirectDrawColorControl_SetColorControls(LPDIRECTDRAWCOLORCONTROL iface, LPDDCOLORCONTROL lpColorControl)
40 {
41 DX_STUB;
42 }
43
44 IDirectDrawColorControlVtbl DirectDrawColorControl_Vtable =
45 {
46 Main_DirectDrawColorControl_QueryInterface,
47 Main_DirectDrawColorControl_AddRef,
48 Main_DirectDrawColorControl_Release,
49 Main_DirectDrawColorControl_GetColorControls,
50 Main_DirectDrawColorControl_SetColorControls
51 };