mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
16 lines
257 B
C
16 lines
257 B
C
#include <windows.h>
|
|
#include <tchar.h>
|
|
|
|
typedef struct _SCREENSHOT
|
|
{
|
|
HWND hSelf;
|
|
HDC hDC;
|
|
HBITMAP hBitmap;
|
|
LPBITMAPINFO lpbi;
|
|
LPVOID lpvBits;
|
|
INT Width;
|
|
INT Height;
|
|
} SCREENSHOT, *PSCREENSHOT;
|
|
|
|
//INT WINAPI GetScreenshot(VOID);
|