1 /*
2  * COPYRIGHT:            See COPYING in the top level directory
3  * PROJECT:              ReactOS DirectX
4  * FILE:                 dll/directx/ddraw/Clipper/clipper_stubs.c
5  * PURPOSE:              IDirectDrawClipper Implementation
6  * PROGRAMMER:           Maarten Bosma
7  *
8  */
9 
10 #include "rosdraw.h"
11 
12 HRESULT WINAPI
13 DirectDrawClipper_GetClipList( LPDIRECTDRAWCLIPPER iface,
14                                LPRECT lpRect,
15                                LPRGNDATA lpClipList,
16                                LPDWORD lpdwSize)
17 {
18    DX_WINDBG_trace();
19    DX_STUB;
20 }
21 
22 HRESULT WINAPI
23 DirectDrawClipper_SetClipList( LPDIRECTDRAWCLIPPER iface,
24                                LPRGNDATA lprgn,
25                                DWORD dwFlag)
26 {
27    DX_WINDBG_trace();
28    DX_STUB;
29 }
30 
31 HRESULT WINAPI
32 DirectDrawClipper_IsClipListChanged( LPDIRECTDRAWCLIPPER iface,
33                                      BOOL* lpbChanged)
34 {
35    DX_WINDBG_trace();
36    DX_STUB;
37 }
38