mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-15 06:04:49 +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
|