mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
a92216f309
- Fit apps better in dir structure. - Move old_wordpad to templates (Ged said it's a great framework). svn path=/trunk/; revision=34308
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);
|