mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-14 22:03:27 +01:00
11 lines
185 B
C
11 lines
185 B
C
|
#ifndef SCREENSHOT_H
|
||
|
#define SCREENSHOT_H
|
||
|
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <windows.h>
|
||
|
#include "ddsurface.h"
|
||
|
|
||
|
BOOL ss_take_screenshot(struct IDirectDrawSurfaceImpl* src);
|
||
|
|
||
|
#endif
|