mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +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);
|