* include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,

PW_CLIENTONLY): Add function and constant.

	* lib/user32.def (PrintWindow): Add function.
This commit is contained in:
Dimitri Papadopoulos 2003-09-26 10:41:23 +00:00
parent 46ffaf5071
commit b6c1b88ad4
3 changed files with 19 additions and 7 deletions

View File

@ -1,3 +1,10 @@
2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net>
* include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
PW_CLIENTONLY): Add function and constant.
* lib/user32.def (PrintWindow): Add function.
2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net>
* include/winuser.h (RealGetWindowClassA[AW]): Add function.

View File

@ -2011,7 +2011,7 @@ extern "C" {
#define WA_CLICKACTIVE 2
#define ICON_SMALL 0
#define ICON_BIG 1
#if _WIN32_WINNT >= 0x0501
#if (_WIN32_WINNT >= 0x0501)
#define ICON_SMALL2 2
#endif
#define HBMMENU_CALLBACK ((HBITMAP) -1)
@ -2084,6 +2084,11 @@ extern "C" {
#define AW_ACTIVATE 0x00020000
#define AW_SLIDE 0x00040000
#define AW_BLEND 0x00080000
#define DEVICE_NOTIFY_WINDOW_HANDLE 0x00000000
#define DEVICE_NOTIFY_SERVICE_HANDLE 0x00000001
#if(_WIN32_WINNT >= 0x0501)
#define DEVICE_NOTIFY_ALL_INTERFACE_CLASSES 0x00000004
#endif
#endif /* (WINVER >= 0x0500) */
#if (_WIN32_WINNT >= 0x0500 || _WIN32_WINDOWS >= 0x0490)
#define ASFW_ANY ((DWORD)-1)
@ -2117,13 +2122,9 @@ extern "C" {
#define GMMP_USE_DISPLAY_POINTS 1
#define GMMP_USE_HIGH_RESOLUTION_POINTS 2
#endif
#if (WINVER >= 0x0500)
#define DEVICE_NOTIFY_WINDOW_HANDLE 0x00000000
#define DEVICE_NOTIFY_SERVICE_HANDLE 0x00000001
#if(_WIN32_WINNT >= 0x0501)
#define DEVICE_NOTIFY_ALL_INTERFACE_CLASSES 0x00000004
#if (_WIN32_WINNT >= 0x0501)
#define PW_CLIENTONLY 0x00000001
#endif
#endif /* (WINVER >= 0x0500) */
#ifndef RC_INVOKED
typedef BOOL(CALLBACK *DLGPROC)(HWND,UINT,WPARAM,LPARAM);
@ -3393,6 +3394,9 @@ BOOL WINAPI PostMessageW(HWND,UINT,WPARAM,LPARAM);
void WINAPI PostQuitMessage(int);
BOOL WINAPI PostThreadMessageA(DWORD,UINT,WPARAM,LPARAM);
BOOL WINAPI PostThreadMessageW(DWORD,UINT,WPARAM,LPARAM);
#if (_WIN32_WINNT >= 0x0501)
BOOL WINAPI PrintWindow(HWND,HDC,UINT);
#endif
BOOL WINAPI PtInRect(LPCRECT,POINT);
HWND WINAPI RealChildWindowFromPoint(HWND,POINT);
UINT WINAPI RealGetWindowClassA(HWND,LPSTR,UINT);

View File

@ -455,6 +455,7 @@ PostMessageW@16
PostQuitMessage@4
PostThreadMessageA@16
PostThreadMessageW@16
PrintWindow@12
PtInRect@12
RealChildWindowFromPoint@12
RealGetWindowClassA@12