mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-15 06:04:49 +01:00
13 lines
257 B
C
13 lines
257 B
C
#ifndef DDCLIPPER_H
|
|
#define DDCLIPPER_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#include "ddraw.h"
|
|
#include "IDirectDrawClipper.h"
|
|
|
|
|
|
HRESULT dd_CreateClipper(DWORD dwFlags, IDirectDrawClipperImpl** lplpDDClipper, IUnknown FAR* pUnkOuter);
|
|
|
|
#endif
|