2020-10-13 09:20:52 +02:00
|
|
|
#ifndef DDCLIPPER_H
|
|
|
|
#define DDCLIPPER_H
|
|
|
|
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
2021-06-14 09:57:26 +02:00
|
|
|
#include "ddraw.h"
|
2021-06-11 20:30:43 +02:00
|
|
|
#include "IDirectDrawClipper.h"
|
2020-10-13 09:20:52 +02:00
|
|
|
|
|
|
|
|
2022-09-27 13:56:36 +02:00
|
|
|
HRESULT ddc_GetClipList(IDirectDrawClipperImpl* This, LPRECT lpRect, LPRGNDATA lpClipList, LPDWORD lpdwSiz);
|
2022-09-26 22:22:15 +02:00
|
|
|
HRESULT ddc_GetHWnd(IDirectDrawClipperImpl* This, HWND FAR* lphWnd);
|
2022-10-02 14:47:46 +02:00
|
|
|
HRESULT ddc_IsClipListChanged(IDirectDrawClipperImpl* This, BOOL FAR* lpbChanged);
|
2022-09-27 13:56:36 +02:00
|
|
|
HRESULT ddc_SetClipList(IDirectDrawClipperImpl* This, LPRGNDATA lpClipList, DWORD dwFlags);
|
2022-09-26 22:22:15 +02:00
|
|
|
HRESULT ddc_SetHWnd(IDirectDrawClipperImpl* This, DWORD dwFlags, HWND hWnd);
|
2021-06-11 20:30:43 +02:00
|
|
|
HRESULT dd_CreateClipper(DWORD dwFlags, IDirectDrawClipperImpl** lplpDDClipper, IUnknown FAR* pUnkOuter);
|
2020-10-13 09:20:52 +02:00
|
|
|
|
|
|
|
#endif
|