1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00
cnc-ddraw/inc/ddclipper.h

13 lines
257 B
C
Raw Permalink Normal View History

2020-10-13 09:20:52 +02:00
#ifndef DDCLIPPER_H
#define DDCLIPPER_H
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "ddraw.h"
2021-06-11 20:30:43 +02:00
#include "IDirectDrawClipper.h"
2020-10-13 09:20:52 +02:00
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