winuser.h
资源名称:USBView.rar [点击查看]
上传用户:gzccxsp
上传日期:2015-07-14
资源大小:182k
文件大小:238k
源码类别:
MacOS编程
开发平台:
Visual C++
- /****************************************************************************
- * *
- * winuser.h -- USER procedure declarations, constant definitions and macros *
- * *
- * Copyright (c) 1985-1999, Microsoft Corp. All rights reserved. *
- * *
- ****************************************************************************/
- #ifndef _WINUSER_
- #define _WINUSER_
- //
- // Define API decoration for direct importing of DLL references.
- //
- #if !defined(_USER32_)
- #define WINUSERAPI DECLSPEC_IMPORT
- #else
- #define WINUSERAPI
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
- #ifndef WINVER
- #define WINVER 0x045A /* version 4.90 */
- #endif /* !WINVER */
- #ifndef _WIN32_WINDOWS
- #define _WIN32_WINDOWS 0x045A /* version 4.90 */
- #endif /* !_WIN32_WINDOWS */
- #include <stdarg.h>
- #ifndef NOUSER
- typedef HANDLE HDWP;
- typedef VOID MENUTEMPLATEA;
- typedef VOID MENUTEMPLATEW;
- #ifdef UNICODE
- typedef MENUTEMPLATEW MENUTEMPLATE;
- #else
- typedef MENUTEMPLATEA MENUTEMPLATE;
- #endif // UNICODE
- typedef PVOID LPMENUTEMPLATEA;
- typedef PVOID LPMENUTEMPLATEW;
- #ifdef UNICODE
- typedef LPMENUTEMPLATEW LPMENUTEMPLATE;
- #else
- typedef LPMENUTEMPLATEA LPMENUTEMPLATE;
- #endif // UNICODE
- typedef LRESULT (CALLBACK* WNDPROC)(HWND, UINT, WPARAM, LPARAM);
- #ifdef STRICT
- typedef BOOL (CALLBACK* DLGPROC)(HWND, UINT, WPARAM, LPARAM);
- typedef VOID (CALLBACK* TIMERPROC)(HWND, UINT, UINT, DWORD);
- typedef BOOL (CALLBACK* GRAYSTRINGPROC)(HDC, LPARAM, int);
- typedef BOOL (CALLBACK* WNDENUMPROC)(HWND, LPARAM);
- typedef LRESULT (CALLBACK* HOOKPROC)(int code, WPARAM wParam, LPARAM lParam);
- typedef VOID (CALLBACK* SENDASYNCPROC)(HWND, UINT, DWORD, LRESULT);
- typedef BOOL (CALLBACK* PROPENUMPROCA)(HWND, LPCSTR, HANDLE);
- typedef BOOL (CALLBACK* PROPENUMPROCW)(HWND, LPCWSTR, HANDLE);
- typedef BOOL (CALLBACK* PROPENUMPROCEXA)(HWND, LPSTR, HANDLE, DWORD);
- typedef BOOL (CALLBACK* PROPENUMPROCEXW)(HWND, LPWSTR, HANDLE, DWORD);
- typedef int (CALLBACK* EDITWORDBREAKPROCA)(LPSTR lpch, int ichCurrent, int cch, int code);
- typedef int (CALLBACK* EDITWORDBREAKPROCW)(LPWSTR lpch, int ichCurrent, int cch, int code);
- #if(WINVER >= 0x0400)
- typedef BOOL (CALLBACK* DRAWSTATEPROC)(HDC hdc, LPARAM lData, WPARAM wData, int cx, int cy);
- #endif /* WINVER >= 0x0400 */
- #else /* !STRICT */
- typedef FARPROC DLGPROC;
- typedef FARPROC TIMERPROC;
- typedef FARPROC GRAYSTRINGPROC;
- typedef FARPROC WNDENUMPROC;
- typedef FARPROC HOOKPROC;
- typedef FARPROC SENDASYNCPROC;
- typedef FARPROC EDITWORDBREAKPROCA;
- typedef FARPROC EDITWORDBREAKPROCW;
- typedef FARPROC PROPENUMPROCA;
- typedef FARPROC PROPENUMPROCW;
- typedef FARPROC PROPENUMPROCEXA;
- typedef FARPROC PROPENUMPROCEXW;
- #if(WINVER >= 0x0400)
- typedef FARPROC DRAWSTATEPROC;
- #endif /* WINVER >= 0x0400 */
- #endif /* !STRICT */
- #ifdef UNICODE
- typedef PROPENUMPROCW PROPENUMPROC;
- typedef PROPENUMPROCEXW PROPENUMPROCEX;
- typedef EDITWORDBREAKPROCW EDITWORDBREAKPROC;
- #else /* !UNICODE */
- typedef PROPENUMPROCA PROPENUMPROC;
- typedef PROPENUMPROCEXA PROPENUMPROCEX;
- typedef EDITWORDBREAKPROCA EDITWORDBREAKPROC;
- #endif /* UNICODE */
- #ifdef STRICT
- typedef BOOL (CALLBACK* NAMEENUMPROCA)(LPSTR, LPARAM);
- typedef BOOL (CALLBACK* NAMEENUMPROCW)(LPWSTR, LPARAM);
- typedef NAMEENUMPROCA WINSTAENUMPROCA;
- typedef NAMEENUMPROCA DESKTOPENUMPROCA;
- typedef NAMEENUMPROCW WINSTAENUMPROCW;
- typedef NAMEENUMPROCW DESKTOPENUMPROCW;
- #else /* !STRICT */
- typedef FARPROC NAMEENUMPROCA;
- typedef FARPROC NAMEENUMPROCW;
- typedef FARPROC WINSTAENUMPROCA;
- typedef FARPROC DESKTOPENUMPROCA;
- typedef FARPROC WINSTAENUMPROCW;
- typedef FARPROC DESKTOPENUMPROCW;
- #endif /* !STRICT */
- #ifdef UNICODE
- typedef WINSTAENUMPROCW WINSTAENUMPROC;
- typedef DESKTOPENUMPROCW DESKTOPENUMPROC;
- #else /* !UNICODE */
- typedef WINSTAENUMPROCA WINSTAENUMPROC;
- typedef DESKTOPENUMPROCA DESKTOPENUMPROC;
- #endif /* UNICODE */
- #define MAKEINTRESOURCEA(i) (LPSTR)((DWORD)((WORD)(i)))
- #define MAKEINTRESOURCEW(i) (LPWSTR)((DWORD)((WORD)(i)))
- #ifdef UNICODE
- #define MAKEINTRESOURCE MAKEINTRESOURCEW
- #else
- #define MAKEINTRESOURCE MAKEINTRESOURCEA
- #endif // !UNICODE
- #ifndef NORESOURCE
- /*
- * Predefined Resource Types
- */
- #define RT_CURSOR MAKEINTRESOURCE(1)
- #define RT_BITMAP MAKEINTRESOURCE(2)
- #define RT_ICON MAKEINTRESOURCE(3)
- #define RT_MENU MAKEINTRESOURCE(4)
- #define RT_DIALOG MAKEINTRESOURCE(5)
- #define RT_STRING MAKEINTRESOURCE(6)
- #define RT_FONTDIR MAKEINTRESOURCE(7)
- #define RT_FONT MAKEINTRESOURCE(8)
- #define RT_ACCELERATOR MAKEINTRESOURCE(9)
- #define RT_RCDATA MAKEINTRESOURCE(10)
- #define RT_MESSAGETABLE MAKEINTRESOURCE(11)
- #define DIFFERENCE 11
- #define RT_GROUP_CURSOR MAKEINTRESOURCE((DWORD)RT_CURSOR + DIFFERENCE)
- #define RT_GROUP_ICON MAKEINTRESOURCE((DWORD)RT_ICON + DIFFERENCE)
- #define RT_VERSION MAKEINTRESOURCE(16)
- #define RT_DLGINCLUDE MAKEINTRESOURCE(17)
- #if(WINVER >= 0x0400)
- #define RT_PLUGPLAY MAKEINTRESOURCE(19)
- #define RT_VXD MAKEINTRESOURCE(20)
- #define RT_ANICURSOR MAKEINTRESOURCE(21)
- #define RT_ANIICON MAKEINTRESOURCE(22)
- #endif /* WINVER >= 0x0400 */
- #define RT_HTML MAKEINTRESOURCE(23)
- #endif /* !NORESOURCE */
- WINUSERAPI
- int
- WINAPI
- wvsprintfA(
- LPSTR,
- LPCSTR,
- va_list arglist);
- WINUSERAPI
- int
- WINAPI
- wvsprintfW(
- LPWSTR,
- LPCWSTR,
- va_list arglist);
- #ifdef UNICODE
- #define wvsprintf wvsprintfW
- #else
- #define wvsprintf wvsprintfA
- #endif // !UNICODE
- WINUSERAPI int WINAPIV wsprintfA(LPSTR, LPCSTR, ...);
- WINUSERAPI int WINAPIV wsprintfW(LPWSTR, LPCWSTR, ...);
- #ifdef UNICODE
- #define wsprintf wsprintfW
- #else
- #define wsprintf wsprintfA
- #endif // !UNICODE
- #ifndef NOSCROLL
- /*
- * Scroll Bar Constants
- */
- #define SB_HORZ 0
- #define SB_VERT 1
- #define SB_CTL 2
- #define SB_BOTH 3
- /*
- * Scroll Bar Commands
- */
- #define SB_LINEUP 0
- #define SB_LINELEFT 0
- #define SB_LINEDOWN 1
- #define SB_LINERIGHT 1
- #define SB_PAGEUP 2
- #define SB_PAGELEFT 2
- #define SB_PAGEDOWN 3
- #define SB_PAGERIGHT 3
- #define SB_THUMBPOSITION 4
- #define SB_THUMBTRACK 5
- #define SB_TOP 6
- #define SB_LEFT 6
- #define SB_BOTTOM 7
- #define SB_RIGHT 7
- #define SB_ENDSCROLL 8
- #endif /* !NOSCROLL */
- #ifndef NOSHOWWINDOW
- // begin_r_winuser
- /*
- * ShowWindow() Commands
- */
- #define SW_HIDE 0
- #define SW_SHOWNORMAL 1
- #define SW_NORMAL 1
- #define SW_SHOWMINIMIZED 2
- #define SW_SHOWMAXIMIZED 3
- #define SW_MAXIMIZE 3
- #define SW_SHOWNOACTIVATE 4
- #define SW_SHOW 5
- #define SW_MINIMIZE 6
- #define SW_SHOWMINNOACTIVE 7
- #define SW_SHOWNA 8
- #define SW_RESTORE 9
- #define SW_SHOWDEFAULT 10
- #define SW_MAX 10
- /*
- * Old ShowWindow() Commands
- */
- #define HIDE_WINDOW 0
- #define SHOW_OPENWINDOW 1
- #define SHOW_ICONWINDOW 2
- #define SHOW_FULLSCREEN 3
- #define SHOW_OPENNOACTIVATE 4
- /*
- * Identifiers for the WM_SHOWWINDOW message
- */
- #define SW_PARENTCLOSING 1
- #define SW_OTHERZOOM 2
- #define SW_PARENTOPENING 3
- #define SW_OTHERUNZOOM 4
- // end_r_winuser
- #endif /* !NOSHOWWINDOW */
- #if (_WIN32_WINDOWS >= 0x040A)
- /*
- * AnimateWindow() Commands
- */
- #define AW_HOR_POSITIVE 0x00000001
- #define AW_HOR_NEGATIVE 0x00000002
- #define AW_VER_POSITIVE 0x00000004
- #define AW_VER_NEGATIVE 0x00000008
- #define AW_CENTER 0x00000010
- #define AW_HIDE 0x00010000
- #define AW_ACTIVATE 0x00020000
- #define AW_SLIDE 0x00040000
- #define AW_BLEND 0x00080000
- #endif // (_WIN32_WINNT >= 0x040A)
- /*
- * WM_KEYUP/DOWN/CHAR HIWORD(lParam) flags
- */
- #define KF_EXTENDED 0x0100
- #define KF_DLGMODE 0x0800
- #define KF_MENUMODE 0x1000
- #define KF_ALTDOWN 0x2000
- #define KF_REPEAT 0x4000
- #define KF_UP 0x8000
- #ifndef NOVIRTUALKEYCODES
- // begin_r_winuser
- /*
- * Virtual Keys, Standard Set
- */
- #define VK_LBUTTON 0x01
- #define VK_RBUTTON 0x02
- #define VK_CANCEL 0x03
- #define VK_MBUTTON 0x04 /* NOT contiguous with L & RBUTTON */
- #if (_WIN32_WINDOWS >= 0x045A)
- #define VK_XBUTTON1 0x05 /* NOT contiguous with L & RBUTTON */
- #define VK_XBUTTON2 0x06 /* NOT contiguous with L & RBUTTON */
- #endif // (_WIN32_WINDOWS >= 0x045A)
- #define VK_BACK 0x08
- #define VK_TAB 0x09
- #define VK_CLEAR 0x0C
- #define VK_RETURN 0x0D
- #define VK_SHIFT 0x10
- #define VK_CONTROL 0x11
- #define VK_MENU 0x12
- #define VK_PAUSE 0x13
- #define VK_CAPITAL 0x14
- #define VK_KANA 0x15
- #define VK_HANGEUL 0x15 /* old name - should be here for compatibility */
- #define VK_HANGUL 0x15
- #define VK_JUNJA 0x17
- #define VK_FINAL 0x18
- #define VK_HANJA 0x19
- #define VK_KANJI 0x19
- #define VK_ESCAPE 0x1B
- #define VK_CONVERT 0x1C
- #define VK_NONCONVERT 0x1D
- #define VK_ACCEPT 0x1E
- #define VK_MODECHANGE 0x1F
- #define VK_SPACE 0x20
- #define VK_PRIOR 0x21
- #define VK_NEXT 0x22
- #define VK_END 0x23
- #define VK_HOME 0x24
- #define VK_LEFT 0x25
- #define VK_UP 0x26
- #define VK_RIGHT 0x27
- #define VK_DOWN 0x28
- #define VK_SELECT 0x29
- #define VK_PRINT 0x2A
- #define VK_EXECUTE 0x2B
- #define VK_SNAPSHOT 0x2C
- #define VK_INSERT 0x2D
- #define VK_DELETE 0x2E
- #define VK_HELP 0x2F
- /* VK_0 thru VK_9 are the same as ASCII '0' thru '9' (0x30 - 0x39) */
- /* VK_A thru VK_Z are the same as ASCII 'A' thru 'Z' (0x41 - 0x5A) */
- #define VK_LWIN 0x5B
- #define VK_RWIN 0x5C
- #define VK_APPS 0x5D
- #define VK_POWER 0x5E
- #define VK_SLEEP 0x5F
- #define VK_NUMPAD0 0x60
- #define VK_NUMPAD1 0x61
- #define VK_NUMPAD2 0x62
- #define VK_NUMPAD3 0x63
- #define VK_NUMPAD4 0x64
- #define VK_NUMPAD5 0x65
- #define VK_NUMPAD6 0x66
- #define VK_NUMPAD7 0x67
- #define VK_NUMPAD8 0x68
- #define VK_NUMPAD9 0x69
- #define VK_MULTIPLY 0x6A
- #define VK_ADD 0x6B
- #define VK_SEPARATOR 0x6C
- #define VK_SUBTRACT 0x6D
- #define VK_DECIMAL 0x6E
- #define VK_DIVIDE 0x6F
- #define VK_F1 0x70
- #define VK_F2 0x71
- #define VK_F3 0x72
- #define VK_F4 0x73
- #define VK_F5 0x74
- #define VK_F6 0x75
- #define VK_F7 0x76
- #define VK_F8 0x77
- #define VK_F9 0x78
- #define VK_F10 0x79
- #define VK_F11 0x7A
- #define VK_F12 0x7B
- #define VK_F13 0x7C
- #define VK_F14 0x7D
- #define VK_F15 0x7E
- #define VK_F16 0x7F
- #define VK_F17 0x80
- #define VK_F18 0x81
- #define VK_F19 0x82
- #define VK_F20 0x83
- #define VK_F21 0x84
- #define VK_F22 0x85
- #define VK_F23 0x86
- #define VK_F24 0x87
- #define VK_NUMLOCK 0x90
- #define VK_SCROLL 0x91
- /*
- * VK_L* & VK_R* - left and right Alt, Ctrl and Shift virtual keys.
- * Used only as parameters to GetAsyncKeyState() and GetKeyState().
- * No other API or message will distinguish left and right keys in this way.
- */
- #define VK_LSHIFT 0xA0
- #define VK_RSHIFT 0xA1
- #define VK_LCONTROL 0xA2
- #define VK_RCONTROL 0xA3
- #define VK_LMENU 0xA4
- #define VK_RMENU 0xA5
- #if (_WIN32_WINDOWS >= 0x045A)
- #define VK_BROWSER_BACK 0xA6
- #define VK_BROWSER_FORWARD 0xA7
- #define VK_BROWSER_REFRESH 0xA8
- #define VK_BROWSER_STOP 0xA9
- #define VK_BROWSER_SEARCH 0xAA
- #define VK_BROWSER_FAVORITES 0xAB
- #define VK_BROWSER_HOME 0xAC
- #define VK_VOLUME_MUTE 0xAD
- #define VK_VOLUME_DOWN 0xAE
- #define VK_VOLUME_UP 0xAF
- #define VK_MEDIA_NEXT_TRACK 0xB0
- #define VK_MEDIA_PREV_TRACK 0xB1
- #define VK_MEDIA_STOP 0xB2
- #define VK_MEDIA_PLAY_PAUSE 0xB3
- #define VK_LAUNCH_MAIL 0xB4
- #define VK_LAUNCH_MEDIA_SELECT 0xB5
- #define VK_LAUNCH_APP1 0xB6
- #define VK_LAUNCH_APP2 0xB7
- #endif // (_WIN32_WINDOWS >= 0x045A)
- #if(WINVER >= 0x0400)
- #define VK_PROCESSKEY 0xE5
- #endif /* WINVER >= 0x0400 */
- #if (_WIN32_WINDOWS >= 0x045A)
- #define VK_PACKET 0xE7
- #endif // (_WIN32_WINDOWS >= 0x045A)
- #define VK_ATTN 0xF6
- #define VK_CRSEL 0xF7
- #define VK_EXSEL 0xF8
- #define VK_EREOF 0xF9
- #define VK_PLAY 0xFA
- #define VK_ZOOM 0xFB
- #define VK_NONAME 0xFC
- #define VK_PA1 0xFD
- #define VK_OEM_CLEAR 0xFE
- // end_r_winuser
- #endif /* !NOVIRTUALKEYCODES */
- #ifndef NOWH
- /*
- * SetWindowsHook() codes
- */
- #define WH_MIN (-1)
- #define WH_MSGFILTER (-1)
- #define WH_JOURNALRECORD 0
- #define WH_JOURNALPLAYBACK 1
- #define WH_KEYBOARD 2
- #define WH_GETMESSAGE 3
- #define WH_CALLWNDPROC 4
- #define WH_CBT 5
- #define WH_SYSMSGFILTER 6
- #define WH_MOUSE 7
- #define WH_HARDWARE 8
- #define WH_DEBUG 9
- #define WH_SHELL 10
- #define WH_FOREGROUNDIDLE 11
- #if(WINVER >= 0x0400)
- #define WH_CALLWNDPROCRET 12
- #endif /* WINVER >= 0x0400 */
- #if (_WIN32_WINNT >= 0x0400)
- #define WH_KEYBOARD_LL 13
- #define WH_MOUSE_LL 14
- #endif // (_WIN32_WINNT >= 0x0400)
- #if(WINVER >= 0x0400)
- #if (_WIN32_WINNT >= 0x0400)
- #define WH_MAX 14
- #else
- #define WH_MAX 12
- #endif // (_WIN32_WINNT >= 0x0400)
- #else
- #define WH_MAX 11
- #endif
- #define WH_MINHOOK WH_MIN
- #define WH_MAXHOOK WH_MAX
- /*
- * Hook Codes
- */
- #define HC_ACTION 0
- #define HC_GETNEXT 1
- #define HC_SKIP 2
- #define HC_NOREMOVE 3
- #define HC_NOREM HC_NOREMOVE
- #define HC_SYSMODALON 4
- #define HC_SYSMODALOFF 5
- /*
- * CBT Hook Codes
- */
- #define HCBT_MOVESIZE 0
- #define HCBT_MINMAX 1
- #define HCBT_QS 2
- #define HCBT_CREATEWND 3
- #define HCBT_DESTROYWND 4
- #define HCBT_ACTIVATE 5
- #define HCBT_CLICKSKIPPED 6
- #define HCBT_KEYSKIPPED 7
- #define HCBT_SYSCOMMAND 8
- #define HCBT_SETFOCUS 9
- /*
- * HCBT_CREATEWND parameters pointed to by lParam
- */
- typedef struct tagCBT_CREATEWNDA
- {
- struct tagCREATESTRUCTA *lpcs;
- HWND hwndInsertAfter;
- } CBT_CREATEWNDA, *LPCBT_CREATEWNDA;
- /*
- * HCBT_CREATEWND parameters pointed to by lParam
- */
- typedef struct tagCBT_CREATEWNDW
- {
- struct tagCREATESTRUCTW *lpcs;
- HWND hwndInsertAfter;
- } CBT_CREATEWNDW, *LPCBT_CREATEWNDW;
- #ifdef UNICODE
- typedef CBT_CREATEWNDW CBT_CREATEWND;
- typedef LPCBT_CREATEWNDW LPCBT_CREATEWND;
- #else
- typedef CBT_CREATEWNDA CBT_CREATEWND;
- typedef LPCBT_CREATEWNDA LPCBT_CREATEWND;
- #endif // UNICODE
- /*
- * HCBT_ACTIVATE structure pointed to by lParam
- */
- typedef struct tagCBTACTIVATESTRUCT
- {
- BOOL fMouse;
- HWND hWndActive;
- } CBTACTIVATESTRUCT, *LPCBTACTIVATESTRUCT;
- /*
- * WH_MSGFILTER Filter Proc Codes
- */
- #define MSGF_DIALOGBOX 0
- #define MSGF_MESSAGEBOX 1
- #define MSGF_MENU 2
- #define MSGF_SCROLLBAR 5
- #define MSGF_NEXTWINDOW 6
- #define MSGF_MAX 8 // unused
- #define MSGF_USER 4096
- /*
- * Shell support
- */
- #define HSHELL_WINDOWCREATED 1
- #define HSHELL_WINDOWDESTROYED 2
- #define HSHELL_ACTIVATESHELLWINDOW 3
- #if(WINVER >= 0x0400)
- #define HSHELL_WINDOWACTIVATED 4
- #define HSHELL_GETMINRECT 5
- #define HSHELL_REDRAW 6
- #define HSHELL_TASKMAN 7
- #define HSHELL_LANGUAGE 8
- #endif /* WINVER >= 0x0400 */
- #if (_WIN32_WINDOWS >= 0x045A)
- /* cmd for HSHELL_APPCOMMAND and WM_APPCOMMAND */
- #define APPCOMMAND_BROWSER_BACKWARD 1
- #define APPCOMMAND_BROWSER_FORWARD 2
- #define APPCOMMAND_BROWSER_REFRESH 3
- #define APPCOMMAND_BROWSER_STOP 4
- #define APPCOMMAND_BROWSER_SEARCH 5
- #define APPCOMMAND_BROWSER_FAVORITES 6
- #define APPCOMMAND_BROWSER_HOME 7
- #define APPCOMMAND_VOLUME_MUTE 8
- #define APPCOMMAND_VOLUME_DOWN 9
- #define APPCOMMAND_VOLUME_UP 10
- #define APPCOMMAND_MEDIA_NEXTTRACK 11
- #define APPCOMMAND_MEDIA_PREVIOUSTRACK 12
- #define APPCOMMAND_MEDIA_STOP 13
- #define APPCOMMAND_MEDIA_PLAY_PAUSE 14
- #define APPCOMMAND_LAUNCH_MAIL 15
- #define APPCOMMAND_LAUNCH_MEDIA_SELECT 16
- #define APPCOMMAND_LAUNCH_APP1 17
- #define APPCOMMAND_LAUNCH_APP2 18
- #define APPCOMMAND_BASS_DOWN 19
- #define APPCOMMAND_BASS_BOOST 20
- #define APPCOMMAND_BASS_UP 21
- #define APPCOMMAND_TREBLE_DOWN 22
- #define APPCOMMAND_TREBLE_UP 23
- #define FAPPCOMMAND_MOUSE 0x8000
- #define FAPPCOMMAND_KEY 0
- #define FAPPCOMMAND_OEM 0x1000
- #define FAPPCOMMAND_MASK 0xF000
- #define GET_APPCOMMAND_LPARAM(lParam) ((short)(HIWORD(lParam) & ~FAPPCOMMAND_MASK))
- #define GET_DEVICE_LPARAM(lParam) ((WORD)(HIWORD(lParam) & FAPPCOMMAND_MASK))
- #define GET_MOUSEORKEY_LPARAM GET_DEVICE_LPARAM
- #define GET_FLAGS_LPARAM(lParam) (LOWORD(lParam))
- #define GET_KEYSTATE_LPARAM(lParam) GET_FLAGS_LPARAM(lParam)
- #endif // (_WIN32_WINDOWS >= 0x045A)
- /*
- * Message Structure used in Journaling
- */
- typedef struct tagEVENTMSG {
- UINT message;
- UINT paramL;
- UINT paramH;
- DWORD time;
- HWND hwnd;
- } EVENTMSG, *PEVENTMSGMSG, NEAR *NPEVENTMSGMSG, FAR *LPEVENTMSGMSG;
- typedef struct tagEVENTMSG *PEVENTMSG, NEAR *NPEVENTMSG, FAR *LPEVENTMSG;
- /*
- * Message structure used by WH_CALLWNDPROC
- */
- typedef struct tagCWPSTRUCT {
- LPARAM lParam;
- WPARAM wParam;
- UINT message;
- HWND hwnd;
- } CWPSTRUCT, *PCWPSTRUCT, NEAR *NPCWPSTRUCT, FAR *LPCWPSTRUCT;
- #if(WINVER >= 0x0400)
- /*
- * Message structure used by WH_CALLWNDPROCRET
- */
- typedef struct tagCWPRETSTRUCT {
- LRESULT lResult;
- LPARAM lParam;
- WPARAM wParam;
- UINT message;
- HWND hwnd;
- } CWPRETSTRUCT, *PCWPRETSTRUCT, NEAR *NPCWPRETSTRUCT, FAR *LPCWPRETSTRUCT;
- #endif /* WINVER >= 0x0400 */
- #if (_WIN32_WINNT >= 0x0400)
- /*
- * Low level hook flags
- */
- #define LLKHF_EXTENDED 0x00000001
- #define LLKHF_INJECTED 0x00000010
- #define LLKHF_ALTDOWN 0x00000020
- #define LLKHF_UP 0x00000080
- #define LLMHF_INJECTED 0x00000001
- /*
- * Structure used by WH_KEYBOARD_LL
- */
- typedef struct tagKBDLLHOOKSTRUCT {
- DWORD vkCode;
- DWORD scanCode;
- DWORD flags;
- DWORD time;
- DWORD dwExtraInfo;
- } KBDLLHOOKSTRUCT, FAR *LPKBDLLHOOKSTRUCT, *PKBDLLHOOKSTRUCT;
- /*
- * Structure used by WH_MOUSE_LL
- */
- typedef struct tagMSLLHOOKSTRUCT {
- POINT pt;
- DWORD mouseData;
- DWORD flags;
- DWORD time;
- DWORD dwExtraInfo;
- } MSLLHOOKSTRUCT, FAR *LPMSLLHOOKSTRUCT, *PMSLLHOOKSTRUCT;
- #endif // (_WIN32_WINNT >= 0x0400)
- /*
- * Structure used by WH_DEBUG
- */
- typedef struct tagDEBUGHOOKINFO
- {
- DWORD idThread;
- DWORD idThreadInstaller;
- LPARAM lParam;
- WPARAM wParam;
- int code;
- } DEBUGHOOKINFO, *PDEBUGHOOKINFO, NEAR *NPDEBUGHOOKINFO, FAR* LPDEBUGHOOKINFO;
- /*
- * Structure used by WH_MOUSE
- */
- typedef struct tagMOUSEHOOKSTRUCT {
- POINT pt;
- HWND hwnd;
- UINT wHitTestCode;
- DWORD dwExtraInfo;
- } MOUSEHOOKSTRUCT, FAR *LPMOUSEHOOKSTRUCT, *PMOUSEHOOKSTRUCT;
- #if(WINVER >= 0x0400)
- /*
- * Structure used by WH_HARDWARE
- */
- typedef struct tagHARDWAREHOOKSTRUCT {
- HWND hwnd;
- UINT message;
- WPARAM wParam;
- LPARAM lParam;
- } HARDWAREHOOKSTRUCT, FAR *LPHARDWAREHOOKSTRUCT, *PHARDWAREHOOKSTRUCT;
- #endif /* WINVER >= 0x0400 */
- #endif /* !NOWH */
- /*
- * Keyboard Layout API
- */
- #define HKL_PREV 0
- #define HKL_NEXT 1
- #define KLF_ACTIVATE 0x00000001
- #define KLF_SUBSTITUTE_OK 0x00000002
- #define KLF_UNLOADPREVIOUS 0x00000004
- #define KLF_REORDER 0x00000008
- #if(WINVER >= 0x0400)
- #define KLF_REPLACELANG 0x00000010
- #define KLF_NOTELLSHELL 0x00000080
- #endif /* WINVER >= 0x0400 */
- /*
- * Size of KeyboardLayoutName (number of characters), including nul terminator
- */
- #define KL_NAMELENGTH 9
- WINUSERAPI
- HKL
- WINAPI
- LoadKeyboardLayoutA(
- LPCSTR pwszKLID,
- UINT Flags);
- WINUSERAPI
- HKL
- WINAPI
- LoadKeyboardLayoutW(
- LPCWSTR pwszKLID,
- UINT Flags);
- #ifdef UNICODE
- #define LoadKeyboardLayout LoadKeyboardLayoutW
- #else
- #define LoadKeyboardLayout LoadKeyboardLayoutA
- #endif // !UNICODE
- #if(WINVER >= 0x0400)
- WINUSERAPI
- HKL
- WINAPI
- ActivateKeyboardLayout(
- HKL hkl,
- UINT Flags);
- #else
- WINUSERAPI
- BOOL
- WINAPI
- ActivateKeyboardLayout(
- HKL hkl,
- UINT Flags);
- #endif /* WINVER >= 0x0400 */
- #if(WINVER >= 0x0400)
- WINUSERAPI
- int
- WINAPI
- ToUnicodeEx(
- UINT wVirtKey,
- UINT wScanCode,
- PBYTE lpKeyState,
- LPWSTR pwszBuff,
- int cchBuff,
- UINT wFlags,
- HKL dwhkl);
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- BOOL
- WINAPI
- UnloadKeyboardLayout(
- HKL hkl);
- WINUSERAPI
- BOOL
- WINAPI
- GetKeyboardLayoutNameA(
- LPSTR pwszKLID);
- WINUSERAPI
- BOOL
- WINAPI
- GetKeyboardLayoutNameW(
- LPWSTR pwszKLID);
- #ifdef UNICODE
- #define GetKeyboardLayoutName GetKeyboardLayoutNameW
- #else
- #define GetKeyboardLayoutName GetKeyboardLayoutNameA
- #endif // !UNICODE
- #if(WINVER >= 0x0400)
- WINUSERAPI
- int
- WINAPI
- GetKeyboardLayoutList(
- int nBuff,
- HKL FAR *lpList);
- WINUSERAPI
- HKL
- WINAPI
- GetKeyboardLayout(
- DWORD dwLayout
- );
- #endif /* WINVER >= 0x0400 */
- #if (_WIN32_WINDOWS >= 0x040A)
- typedef struct tagMOUSEMOVEPOINT {
- int x;
- int y;
- DWORD time;
- DWORD dwExtraInfo;
- } MOUSEMOVEPOINT, *PMOUSEMOVEPOINT, FAR* LPMOUSEMOVEPOINT;
- /*
- * Values for resolution parameter of GetMouseMovePoints
- */
- #define GMMP_USE_DISPLAY_POINTS 1
- #define GMMP_USE_DRIVER_POINTS 2
- #define GMMP_USE_HIGH_RESOLUTION_POINTS 2
- WINUSERAPI
- int
- WINAPI
- GetMouseMovePointsEx(
- UINT cbSize,
- LPMOUSEMOVEPOINT lppt,
- LPMOUSEMOVEPOINT lpptBuf,
- int nBufPoints,
- DWORD resolution
- );
- #endif // (_WIN32_WINDOWS >= 0x040A)
- #ifndef NODESKTOP
- /*
- * Desktop-specific access flags
- */
- #define DESKTOP_READOBJECTS 0x0001L
- #define DESKTOP_CREATEWINDOW 0x0002L
- #define DESKTOP_CREATEMENU 0x0004L
- #define DESKTOP_HOOKCONTROL 0x0008L
- #define DESKTOP_JOURNALRECORD 0x0010L
- #define DESKTOP_JOURNALPLAYBACK 0x0020L
- #define DESKTOP_ENUMERATE 0x0040L
- #define DESKTOP_WRITEOBJECTS 0x0080L
- #define DESKTOP_SWITCHDESKTOP 0x0100L
- /*
- * Desktop-specific control flags
- */
- #define DF_ALLOWOTHERACCOUNTHOOK 0x0001L
- #ifdef _WINGDI_
- #ifndef NOGDI
- WINUSERAPI
- HDESK
- WINAPI
- CreateDesktopA(
- LPSTR lpszDesktop,
- LPSTR lpszDevice,
- LPDEVMODEA pDevmode,
- DWORD dwFlags,
- ACCESS_MASK dwDesiredAccess,
- LPSECURITY_ATTRIBUTES lpsa);
- WINUSERAPI
- HDESK
- WINAPI
- CreateDesktopW(
- LPWSTR lpszDesktop,
- LPWSTR lpszDevice,
- LPDEVMODEW pDevmode,
- DWORD dwFlags,
- ACCESS_MASK dwDesiredAccess,
- LPSECURITY_ATTRIBUTES lpsa);
- #ifdef UNICODE
- #define CreateDesktop CreateDesktopW
- #else
- #define CreateDesktop CreateDesktopA
- #endif // !UNICODE
- #endif /* NOGDI */
- #endif /* _WINGDI_ */
- WINUSERAPI
- HDESK
- WINAPI
- OpenDesktopA(
- LPSTR lpszDesktop,
- DWORD dwFlags,
- BOOL fInherit,
- ACCESS_MASK dwDesiredAccess);
- WINUSERAPI
- HDESK
- WINAPI
- OpenDesktopW(
- LPWSTR lpszDesktop,
- DWORD dwFlags,
- BOOL fInherit,
- ACCESS_MASK dwDesiredAccess);
- #ifdef UNICODE
- #define OpenDesktop OpenDesktopW
- #else
- #define OpenDesktop OpenDesktopA
- #endif // !UNICODE
- WINUSERAPI
- HDESK
- WINAPI
- OpenInputDesktop(
- DWORD dwFlags,
- BOOL fInherit,
- ACCESS_MASK dwDesiredAccess);
- WINUSERAPI
- BOOL
- WINAPI
- EnumDesktopsA(
- HWINSTA hwinsta,
- DESKTOPENUMPROCA lpEnumFunc,
- LPARAM lParam);
- WINUSERAPI
- BOOL
- WINAPI
- EnumDesktopsW(
- HWINSTA hwinsta,
- DESKTOPENUMPROCW lpEnumFunc,
- LPARAM lParam);
- #ifdef UNICODE
- #define EnumDesktops EnumDesktopsW
- #else
- #define EnumDesktops EnumDesktopsA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- EnumDesktopWindows(
- HDESK hDesktop,
- WNDENUMPROC lpfn,
- LPARAM lParam);
- WINUSERAPI
- BOOL
- WINAPI
- SwitchDesktop(
- HDESK hDesktop);
- WINUSERAPI
- BOOL
- WINAPI
- SetThreadDesktop(
- HDESK hDesktop);
- WINUSERAPI
- BOOL
- WINAPI
- CloseDesktop(
- HDESK hDesktop);
- WINUSERAPI
- HDESK
- WINAPI
- GetThreadDesktop(
- DWORD dwThreadId);
- #endif /* !NODESKTOP */
- #ifndef NOWINDOWSTATION
- /*
- * Windowstation-specific access flags
- */
- #define WINSTA_ENUMDESKTOPS 0x0001L
- #define WINSTA_READATTRIBUTES 0x0002L
- #define WINSTA_ACCESSCLIPBOARD 0x0004L
- #define WINSTA_CREATEDESKTOP 0x0008L
- #define WINSTA_WRITEATTRIBUTES 0x0010L
- #define WINSTA_ACCESSGLOBALATOMS 0x0020L
- #define WINSTA_EXITWINDOWS 0x0040L
- #define WINSTA_ENUMERATE 0x0100L
- #define WINSTA_READSCREEN 0x0200L
- /*
- * Windowstation-specific attribute flags
- */
- #define WSF_VISIBLE 0x0001L
- WINUSERAPI
- HWINSTA
- WINAPI
- CreateWindowStationA(
- LPSTR lpwinsta,
- DWORD dwReserved,
- ACCESS_MASK dwDesiredAccess,
- LPSECURITY_ATTRIBUTES lpsa);
- WINUSERAPI
- HWINSTA
- WINAPI
- CreateWindowStationW(
- LPWSTR lpwinsta,
- DWORD dwReserved,
- ACCESS_MASK dwDesiredAccess,
- LPSECURITY_ATTRIBUTES lpsa);
- #ifdef UNICODE
- #define CreateWindowStation CreateWindowStationW
- #else
- #define CreateWindowStation CreateWindowStationA
- #endif // !UNICODE
- WINUSERAPI
- HWINSTA
- WINAPI
- OpenWindowStationA(
- LPSTR lpszWinSta,
- BOOL fInherit,
- ACCESS_MASK dwDesiredAccess);
- WINUSERAPI
- HWINSTA
- WINAPI
- OpenWindowStationW(
- LPWSTR lpszWinSta,
- BOOL fInherit,
- ACCESS_MASK dwDesiredAccess);
- #ifdef UNICODE
- #define OpenWindowStation OpenWindowStationW
- #else
- #define OpenWindowStation OpenWindowStationA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- EnumWindowStationsA(
- WINSTAENUMPROCA lpEnumFunc,
- LPARAM lParam);
- WINUSERAPI
- BOOL
- WINAPI
- EnumWindowStationsW(
- WINSTAENUMPROCW lpEnumFunc,
- LPARAM lParam);
- #ifdef UNICODE
- #define EnumWindowStations EnumWindowStationsW
- #else
- #define EnumWindowStations EnumWindowStationsA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- CloseWindowStation(
- HWINSTA hWinSta);
- WINUSERAPI
- BOOL
- WINAPI
- SetProcessWindowStation(
- HWINSTA hWinSta);
- WINUSERAPI
- HWINSTA
- WINAPI
- GetProcessWindowStation(
- VOID);
- #endif /* !NOWINDOWSTATION */
- #ifndef NOSECURITY
- WINUSERAPI
- BOOL
- WINAPI
- SetUserObjectSecurity(
- HANDLE hObj,
- PSECURITY_INFORMATION pSIRequested,
- PSECURITY_DESCRIPTOR pSID);
- WINUSERAPI
- BOOL
- WINAPI
- GetUserObjectSecurity(
- HANDLE hObj,
- PSECURITY_INFORMATION pSIRequested,
- PSECURITY_DESCRIPTOR pSID,
- DWORD nLength,
- LPDWORD lpnLengthNeeded);
- #define UOI_FLAGS 1
- #define UOI_NAME 2
- #define UOI_TYPE 3
- #define UOI_USER_SID 4
- typedef struct tagUSEROBJECTFLAGS {
- BOOL fInherit;
- BOOL fReserved;
- DWORD dwFlags;
- } USEROBJECTFLAGS, *PUSEROBJECTFLAGS;
- WINUSERAPI
- BOOL
- WINAPI
- GetUserObjectInformationA(
- HANDLE hObj,
- int nIndex,
- PVOID pvInfo,
- DWORD nLength,
- LPDWORD lpnLengthNeeded);
- WINUSERAPI
- BOOL
- WINAPI
- GetUserObjectInformationW(
- HANDLE hObj,
- int nIndex,
- PVOID pvInfo,
- DWORD nLength,
- LPDWORD lpnLengthNeeded);
- #ifdef UNICODE
- #define GetUserObjectInformation GetUserObjectInformationW
- #else
- #define GetUserObjectInformation GetUserObjectInformationA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- SetUserObjectInformationA(
- HANDLE hObj,
- int nIndex,
- PVOID pvInfo,
- DWORD nLength);
- WINUSERAPI
- BOOL
- WINAPI
- SetUserObjectInformationW(
- HANDLE hObj,
- int nIndex,
- PVOID pvInfo,
- DWORD nLength);
- #ifdef UNICODE
- #define SetUserObjectInformation SetUserObjectInformationW
- #else
- #define SetUserObjectInformation SetUserObjectInformationA
- #endif // !UNICODE
- #endif /* !NOSECURITY */
- #if(WINVER >= 0x0400)
- typedef struct tagWNDCLASSEXA {
- UINT cbSize;
- /* Win 3.x */
- UINT style;
- WNDPROC lpfnWndProc;
- int cbClsExtra;
- int cbWndExtra;
- HINSTANCE hInstance;
- HICON hIcon;
- HCURSOR hCursor;
- HBRUSH hbrBackground;
- LPCSTR lpszMenuName;
- LPCSTR lpszClassName;
- /* Win 4.0 */
- HICON hIconSm;
- } WNDCLASSEXA, *PWNDCLASSEXA, NEAR *NPWNDCLASSEXA, FAR *LPWNDCLASSEXA;
- typedef struct tagWNDCLASSEXW {
- UINT cbSize;
- /* Win 3.x */
- UINT style;
- WNDPROC lpfnWndProc;
- int cbClsExtra;
- int cbWndExtra;
- HINSTANCE hInstance;
- HICON hIcon;
- HCURSOR hCursor;
- HBRUSH hbrBackground;
- LPCWSTR lpszMenuName;
- LPCWSTR lpszClassName;
- /* Win 4.0 */
- HICON hIconSm;
- } WNDCLASSEXW, *PWNDCLASSEXW, NEAR *NPWNDCLASSEXW, FAR *LPWNDCLASSEXW;
- #ifdef UNICODE
- typedef WNDCLASSEXW WNDCLASSEX;
- typedef PWNDCLASSEXW PWNDCLASSEX;
- typedef NPWNDCLASSEXW NPWNDCLASSEX;
- typedef LPWNDCLASSEXW LPWNDCLASSEX;
- #else
- typedef WNDCLASSEXA WNDCLASSEX;
- typedef PWNDCLASSEXA PWNDCLASSEX;
- typedef NPWNDCLASSEXA NPWNDCLASSEX;
- typedef LPWNDCLASSEXA LPWNDCLASSEX;
- #endif // UNICODE
- #endif /* WINVER >= 0x0400 */
- typedef struct tagWNDCLASSA {
- UINT style;
- WNDPROC lpfnWndProc;
- int cbClsExtra;
- int cbWndExtra;
- HINSTANCE hInstance;
- HICON hIcon;
- HCURSOR hCursor;
- HBRUSH hbrBackground;
- LPCSTR lpszMenuName;
- LPCSTR lpszClassName;
- } WNDCLASSA, *PWNDCLASSA, NEAR *NPWNDCLASSA, FAR *LPWNDCLASSA;
- typedef struct tagWNDCLASSW {
- UINT style;
- WNDPROC lpfnWndProc;
- int cbClsExtra;
- int cbWndExtra;
- HINSTANCE hInstance;
- HICON hIcon;
- HCURSOR hCursor;
- HBRUSH hbrBackground;
- LPCWSTR lpszMenuName;
- LPCWSTR lpszClassName;
- } WNDCLASSW, *PWNDCLASSW, NEAR *NPWNDCLASSW, FAR *LPWNDCLASSW;
- #ifdef UNICODE
- typedef WNDCLASSW WNDCLASS;
- typedef PWNDCLASSW PWNDCLASS;
- typedef NPWNDCLASSW NPWNDCLASS;
- typedef LPWNDCLASSW LPWNDCLASS;
- #else
- typedef WNDCLASSA WNDCLASS;
- typedef PWNDCLASSA PWNDCLASS;
- typedef NPWNDCLASSA NPWNDCLASS;
- typedef LPWNDCLASSA LPWNDCLASS;
- #endif // UNICODE
- #ifndef NOMSG
- /*
- * Message structure
- */
- typedef struct tagMSG {
- HWND hwnd;
- UINT message;
- WPARAM wParam;
- LPARAM lParam;
- DWORD time;
- POINT pt;
- } MSG, *PMSG, NEAR *NPMSG, FAR *LPMSG;
- #define POINTSTOPOINT(pt, pts)
- { (pt).x = (LONG)(SHORT)LOWORD(*(LONG*)&pts);
- (pt).y = (LONG)(SHORT)HIWORD(*(LONG*)&pts); }
- #define POINTTOPOINTS(pt) (MAKELONG((short)((pt).x), (short)((pt).y)))
- #define MAKEWPARAM(l, h) (WPARAM)MAKELONG(l, h)
- #define MAKELPARAM(l, h) (LPARAM)MAKELONG(l, h)
- #define MAKELRESULT(l, h) (LRESULT)MAKELONG(l, h)
- #endif /* !NOMSG */
- #ifndef NOWINOFFSETS
- /*
- * Window field offsets for GetWindowLong()
- */
- #define GWL_WNDPROC (-4)
- #define GWL_HINSTANCE (-6)
- #define GWL_HWNDPARENT (-8)
- #define GWL_STYLE (-16)
- #define GWL_EXSTYLE (-20)
- #define GWL_USERDATA (-21)
- #define GWL_ID (-12)
- #define GWLP_WNDPROC (-4)
- #define GWLP_HINSTANCE (-6)
- #define GWLP_HWNDPARENT (-8)
- #define GWLP_USERDATA (-21)
- #define GWLP_ID (-12)
- /*
- * Class field offsets for GetClassLong()
- */
- #define GCL_MENUNAME (-8)
- #define GCL_HBRBACKGROUND (-10)
- #define GCL_HCURSOR (-12)
- #define GCL_HICON (-14)
- #define GCL_HMODULE (-16)
- #define GCL_CBWNDEXTRA (-18)
- #define GCL_CBCLSEXTRA (-20)
- #define GCL_WNDPROC (-24)
- #define GCL_STYLE (-26)
- #define GCW_ATOM (-32)
- #if(WINVER >= 0x0400)
- #define GCL_HICONSM (-34)
- #endif /* WINVER >= 0x0400 */
- #endif /* !NOWINOFFSETS */
- #ifndef NOWINMESSAGES
- // begin_r_winuser
- /*
- * Window Messages
- */
- #define WM_NULL 0x0000
- #define WM_CREATE 0x0001
- #define WM_DESTROY 0x0002
- #define WM_MOVE 0x0003
- #define WM_SIZE 0x0005
- #define WM_ACTIVATE 0x0006
- /*
- * WM_ACTIVATE state values
- */
- #define WA_INACTIVE 0
- #define WA_ACTIVE 1
- #define WA_CLICKACTIVE 2
- #define WM_SETFOCUS 0x0007
- #define WM_KILLFOCUS 0x0008
- #define WM_ENABLE 0x000A
- #define WM_SETREDRAW 0x000B
- #define WM_SETTEXT 0x000C
- #define WM_GETTEXT 0x000D
- #define WM_GETTEXTLENGTH 0x000E
- #define WM_PAINT 0x000F
- #define WM_CLOSE 0x0010
- #define WM_QUERYENDSESSION 0x0011
- #define WM_QUIT 0x0012
- #define WM_QUERYOPEN 0x0013
- #define WM_ERASEBKGND 0x0014
- #define WM_SYSCOLORCHANGE 0x0015
- #define WM_ENDSESSION 0x0016
- #define WM_SHOWWINDOW 0x0018
- #define WM_WININICHANGE 0x001A
- #if(WINVER >= 0x0400)
- #define WM_SETTINGCHANGE WM_WININICHANGE
- #endif /* WINVER >= 0x0400 */
- #define WM_DEVMODECHANGE 0x001B
- #define WM_ACTIVATEAPP 0x001C
- #define WM_FONTCHANGE 0x001D
- #define WM_TIMECHANGE 0x001E
- #define WM_CANCELMODE 0x001F
- #define WM_SETCURSOR 0x0020
- #define WM_MOUSEACTIVATE 0x0021
- #define WM_CHILDACTIVATE 0x0022
- #define WM_QUEUESYNC 0x0023
- #define WM_GETMINMAXINFO 0x0024
- // end_r_winuser
- /*
- * Struct pointed to by WM_GETMINMAXINFO lParam
- */
- typedef struct tagMINMAXINFO {
- POINT ptReserved;
- POINT ptMaxSize;
- POINT ptMaxPosition;
- POINT ptMinTrackSize;
- POINT ptMaxTrackSize;
- } MINMAXINFO, *PMINMAXINFO, *LPMINMAXINFO;
- // begin_r_winuser
- #define WM_PAINTICON 0x0026
- #define WM_ICONERASEBKGND 0x0027
- #define WM_NEXTDLGCTL 0x0028
- #define WM_SPOOLERSTATUS 0x002A
- #define WM_DRAWITEM 0x002B
- #define WM_MEASUREITEM 0x002C
- #define WM_DELETEITEM 0x002D
- #define WM_VKEYTOITEM 0x002E
- #define WM_CHARTOITEM 0x002F
- #define WM_SETFONT 0x0030
- #define WM_GETFONT 0x0031
- #define WM_SETHOTKEY 0x0032
- #define WM_GETHOTKEY 0x0033
- #define WM_QUERYDRAGICON 0x0037
- #define WM_COMPAREITEM 0x0039
- #if (_WIN32_WINNT >= 0x0500)
- #define WM_GETOBJECT 0x003D
- #endif
- #define WM_COMPACTING 0x0041
- #define WM_COMMNOTIFY 0x0044 /* no longer suported */
- #define WM_WINDOWPOSCHANGING 0x0046
- #define WM_WINDOWPOSCHANGED 0x0047
- #define WM_POWER 0x0048
- /*
- * wParam for WM_POWER window message and DRV_POWER driver notification
- */
- #define PWR_OK 1
- #define PWR_FAIL (-1)
- #define PWR_SUSPENDREQUEST 1
- #define PWR_SUSPENDRESUME 2
- #define PWR_CRITICALRESUME 3
- #define WM_COPYDATA 0x004A
- #define WM_CANCELJOURNAL 0x004B
- // end_r_winuser
- /*
- * lParam of WM_COPYDATA message points to...
- */
- typedef struct tagCOPYDATASTRUCT {
- DWORD dwData;
- DWORD cbData;
- PVOID lpData;
- } COPYDATASTRUCT, *PCOPYDATASTRUCT;
- // begin_r_winuser
- #if(WINVER >= 0x0400)
- #define WM_NOTIFY 0x004E
- #define WM_INPUTLANGCHANGEREQUEST 0x0050
- #define WM_INPUTLANGCHANGE 0x0051
- #define WM_TCARD 0x0052
- #define WM_HELP 0x0053
- #define WM_USERCHANGED 0x0054
- #define WM_NOTIFYFORMAT 0x0055
- #define NFR_ANSI 1
- #define NFR_UNICODE 2
- #define NF_QUERY 3
- #define NF_REQUERY 4
- #define WM_CONTEXTMENU 0x007B
- #define WM_STYLECHANGING 0x007C
- #define WM_STYLECHANGED 0x007D
- #define WM_DISPLAYCHANGE 0x007E
- #define WM_GETICON 0x007F
- #define WM_SETICON 0x0080
- #endif /* WINVER >= 0x0400 */
- #define WM_NCCREATE 0x0081
- #define WM_NCDESTROY 0x0082
- #define WM_NCCALCSIZE 0x0083
- #define WM_NCHITTEST 0x0084
- #define WM_NCPAINT 0x0085
- #define WM_NCACTIVATE 0x0086
- #define WM_GETDLGCODE 0x0087
- #define WM_SYNCPAINT 0x0088
- #define WM_NCMOUSEMOVE 0x00A0
- #define WM_NCLBUTTONDOWN 0x00A1
- #define WM_NCLBUTTONUP 0x00A2
- #define WM_NCLBUTTONDBLCLK 0x00A3
- #define WM_NCRBUTTONDOWN 0x00A4
- #define WM_NCRBUTTONUP 0x00A5
- #define WM_NCRBUTTONDBLCLK 0x00A6
- #define WM_NCMBUTTONDOWN 0x00A7
- #define WM_NCMBUTTONUP 0x00A8
- #define WM_NCMBUTTONDBLCLK 0x00A9
- #if (_WIN32_WINDOWS >= 0x045A)
- #define WM_NCXBUTTONDOWN 0x00AB
- #define WM_NCXBUTTONUP 0x00AC
- #define WM_NCXBUTTONDBLCLK 0x00AD
- #endif // (_WIN32_WINDOWS >= 0x045A)
- #define WM_KEYFIRST 0x0100
- #define WM_KEYDOWN 0x0100
- #define WM_KEYUP 0x0101
- #define WM_CHAR 0x0102
- #define WM_DEADCHAR 0x0103
- #define WM_SYSKEYDOWN 0x0104
- #define WM_SYSKEYUP 0x0105
- #define WM_SYSCHAR 0x0106
- #define WM_SYSDEADCHAR 0x0107
- #define WM_KEYLAST 0x0108
- #if(WINVER >= 0x0400)
- #define WM_IME_STARTCOMPOSITION 0x010D
- #define WM_IME_ENDCOMPOSITION 0x010E
- #define WM_IME_COMPOSITION 0x010F
- #define WM_IME_KEYLAST 0x010F
- #endif /* WINVER >= 0x0400 */
- #define WM_INITDIALOG 0x0110
- #define WM_COMMAND 0x0111
- #define WM_SYSCOMMAND 0x0112
- #define WM_TIMER 0x0113
- #define WM_HSCROLL 0x0114
- #define WM_VSCROLL 0x0115
- #define WM_INITMENU 0x0116
- #define WM_INITMENUPOPUP 0x0117
- #define WM_MENUSELECT 0x011F
- #define WM_MENUCHAR 0x0120
- #define WM_ENTERIDLE 0x0121
- #if (_WIN32_WINDOWS >= 0x040A)
- #define WM_MENURBUTTONUP 0x0122
- #define WM_MENUDRAG 0x0123
- #define WM_MENUGETOBJECT 0x0124
- #define WM_UNINITMENUPOPUP 0x0125
- #define WM_MENUCOMMAND 0x0126
- #endif
- #define WM_CTLCOLORMSGBOX 0x0132
- #define WM_CTLCOLOREDIT 0x0133
- #define WM_CTLCOLORLISTBOX 0x0134
- #define WM_CTLCOLORBTN 0x0135
- #define WM_CTLCOLORDLG 0x0136
- #define WM_CTLCOLORSCROLLBAR 0x0137
- #define WM_CTLCOLORSTATIC 0x0138
- #define WM_MOUSEFIRST 0x0200
- #define WM_MOUSEMOVE 0x0200
- #define WM_LBUTTONDOWN 0x0201
- #define WM_LBUTTONUP 0x0202
- #define WM_LBUTTONDBLCLK 0x0203
- #define WM_RBUTTONDOWN 0x0204
- #define WM_RBUTTONUP 0x0205
- #define WM_RBUTTONDBLCLK 0x0206
- #define WM_MBUTTONDOWN 0x0207
- #define WM_MBUTTONUP 0x0208
- #define WM_MBUTTONDBLCLK 0x0209
- #if(WINVER >= 0x040a)
- #define WM_MOUSEWHEEL 0x020A
- #endif /* WINVER >= 0x040a */
- #if (_WIN32_WINDOWS >= 0x045A)
- #define WM_XBUTTONDOWN 0x020B
- #define WM_XBUTTONUP 0x020C
- #define WM_XBUTTONDBLCLK 0x020D
- #endif // (_WIN32_WINDOWS >= 0x045A)
- #if (_WIN32_WINDOWS >= 0x045A)
- #define WM_MOUSELAST 0x020D
- #elif (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
- #define WM_MOUSELAST 0x020A
- #else
- #define WM_MOUSELAST 0x0209
- #endif /* (_WIN32_WINDOWS >= 0x045A) */
- #if(WINVER >= 0x040a)
- #define WHEEL_DELTA 120 /* Value for rolling one detent */
- #endif /* WINVER >= 0x040a */
- #if (_WIN32_WINDOWS >= 0x045A)
- #define GET_KEYSTATE_WPARAM(wParam) (LOWORD(wParam))
- #define GET_NCHITTEST_WPARAM(wParam) ((short)LOWORD(wParam))
- #define GET_XBUTTON_WPARAM(wParam) (HIWORD(wParam))
- /* XButton values are WORD flags */
- #define XBUTTON1 0x0001
- #define XBUTTON2 0x0002
- /* Were there to be an XBUTTON3, it's value would be 0x0004 */
- #endif // (_WIN32_WINDOWS >= 0x045A)
- #define WM_PARENTNOTIFY 0x0210
- #define WM_ENTERMENULOOP 0x0211
- #define WM_EXITMENULOOP 0x0212
- #if(WINVER >= 0x0400)
- #define WM_NEXTMENU 0x0213
- // end_r_winuser
- typedef struct tagMDINEXTMENU
- {
- HMENU hmenuIn;
- HMENU hmenuNext;
- HWND hwndNext;
- } MDINEXTMENU, * PMDINEXTMENU, FAR * LPMDINEXTMENU;
- // begin_r_winuser
- #define WM_SIZING 0x0214
- #define WM_CAPTURECHANGED 0x0215
- #define WM_MOVING 0x0216
- // end_r_winuser
- #define WM_POWERBROADCAST 0x0218 // r_winuser pbt
- // begin_pbt
- #define PBT_APMQUERYSUSPEND 0x0000
- #define PBT_APMQUERYSTANDBY 0x0001
- #define PBT_APMQUERYSUSPENDFAILED 0x0002
- #define PBT_APMQUERYSTANDBYFAILED 0x0003
- #define PBT_APMSUSPEND 0x0004
- #define PBT_APMSTANDBY 0x0005
- #define PBT_APMRESUMECRITICAL 0x0006
- #define PBT_APMRESUMESUSPEND 0x0007
- #define PBT_APMRESUMESTANDBY 0x0008
- #define PBTF_APMRESUMEFROMFAILURE 0x00000001
- #define PBT_APMBATTERYLOW 0x0009
- #define PBT_APMPOWERSTATUSCHANGE 0x000A
- #define PBT_APMOEMEVENT 0x000B
- #define PBT_APMRESUMEAUTOMATIC 0x0012
- // end_pbt
- // begin_r_winuser
- #define WM_DEVICECHANGE 0x0219
- #endif /* WINVER >= 0x0400 */
- #define WM_MDICREATE 0x0220
- #define WM_MDIDESTROY 0x0221
- #define WM_MDIACTIVATE 0x0222
- #define WM_MDIRESTORE 0x0223
- #define WM_MDINEXT 0x0224
- #define WM_MDIMAXIMIZE 0x0225
- #define WM_MDITILE 0x0226
- #define WM_MDICASCADE 0x0227
- #define WM_MDIICONARRANGE 0x0228
- #define WM_MDIGETACTIVE 0x0229
- #define WM_MDISETMENU 0x0230
- #define WM_ENTERSIZEMOVE 0x0231
- #define WM_EXITSIZEMOVE 0x0232
- #define WM_DROPFILES 0x0233
- #define WM_MDIREFRESHMENU 0x0234
- #if(WINVER >= 0x0400)
- #define WM_IME_SETCONTEXT 0x0281
- #define WM_IME_NOTIFY 0x0282
- #define WM_IME_CONTROL 0x0283
- #define WM_IME_COMPOSITIONFULL 0x0284
- #define WM_IME_SELECT 0x0285
- #define WM_IME_CHAR 0x0286
- #define WM_IME_REQUEST 0x0288
- #define WM_IME_KEYDOWN 0x0290
- #define WM_IME_KEYUP 0x0291
- #endif /* WINVER >= 0x0400 */
- #if(_WIN32_WINDOWS >= 0x040a)
- #define WM_NCMOUSEHOVER 0x02A0
- #define WM_MOUSEHOVER 0x02A1
- #define WM_NCMOUSELEAVE 0x02A2
- #define WM_MOUSELEAVE 0x02A3
- #endif /* _WIN32_WINDOWS >= 0x040a */
- #define WM_CUT 0x0300
- #define WM_COPY 0x0301
- #define WM_PASTE 0x0302
- #define WM_CLEAR 0x0303
- #define WM_UNDO 0x0304
- #define WM_RENDERFORMAT 0x0305
- #define WM_RENDERALLFORMATS 0x0306
- #define WM_DESTROYCLIPBOARD 0x0307
- #define WM_DRAWCLIPBOARD 0x0308
- #define WM_PAINTCLIPBOARD 0x0309
- #define WM_VSCROLLCLIPBOARD 0x030A
- #define WM_SIZECLIPBOARD 0x030B
- #define WM_ASKCBFORMATNAME 0x030C
- #define WM_CHANGECBCHAIN 0x030D
- #define WM_HSCROLLCLIPBOARD 0x030E
- #define WM_QUERYNEWPALETTE 0x030F
- #define WM_PALETTEISCHANGING 0x0310
- #define WM_PALETTECHANGED 0x0311
- #define WM_HOTKEY 0x0312
- #if(WINVER >= 0x0400)
- #define WM_PRINT 0x0317
- #define WM_PRINTCLIENT 0x0318
- #endif /* WINVER >= 0x0400 */
- #if (_WIN32_WINDOWS >= 0x045A)
- #define WM_APPCOMMAND 0x0319
- #endif // (_WIN32_WINDOWS >= 0x045A)
- #if(WINVER >= 0x0400)
- #define WM_HANDHELDFIRST 0x0358
- #define WM_HANDHELDLAST 0x035F
- #define WM_AFXFIRST 0x0360
- #define WM_AFXLAST 0x037F
- #endif /* WINVER >= 0x0400 */
- #define WM_PENWINFIRST 0x0380
- #define WM_PENWINLAST 0x038F
- #if(WINVER >= 0x0400)
- #define WM_APP 0x8000
- #endif /* WINVER >= 0x0400 */
- /*
- * NOTE: All Message Numbers below 0x0400 are RESERVED.
- *
- * Private Window Messages Start Here:
- */
- #define WM_USER 0x0400
- #if(WINVER >= 0x0400)
- /* wParam for WM_SIZING message */
- #define WMSZ_LEFT 1
- #define WMSZ_RIGHT 2
- #define WMSZ_TOP 3
- #define WMSZ_TOPLEFT 4
- #define WMSZ_TOPRIGHT 5
- #define WMSZ_BOTTOM 6
- #define WMSZ_BOTTOMLEFT 7
- #define WMSZ_BOTTOMRIGHT 8
- #endif /* WINVER >= 0x0400 */
- #ifndef NONCMESSAGES
- /*
- * WM_NCHITTEST and MOUSEHOOKSTRUCT Mouse Position Codes
- */
- #define HTERROR (-2)
- #define HTTRANSPARENT (-1)
- #define HTNOWHERE 0
- #define HTCLIENT 1
- #define HTCAPTION 2
- #define HTSYSMENU 3
- #define HTGROWBOX 4
- #define HTSIZE HTGROWBOX
- #define HTMENU 5
- #define HTHSCROLL 6
- #define HTVSCROLL 7
- #define HTMINBUTTON 8
- #define HTMAXBUTTON 9
- #define HTLEFT 10
- #define HTRIGHT 11
- #define HTTOP 12
- #define HTTOPLEFT 13
- #define HTTOPRIGHT 14
- #define HTBOTTOM 15
- #define HTBOTTOMLEFT 16
- #define HTBOTTOMRIGHT 17
- #define HTBORDER 18
- #define HTREDUCE HTMINBUTTON
- #define HTZOOM HTMAXBUTTON
- #define HTSIZEFIRST HTLEFT
- #define HTSIZELAST HTBOTTOMRIGHT
- #if(WINVER >= 0x0400)
- #define HTOBJECT 19
- #define HTCLOSE 20
- #define HTHELP 21
- #endif /* WINVER >= 0x0400 */
- /*
- * SendMessageTimeout values
- */
- #define SMTO_NORMAL 0x0000
- #define SMTO_BLOCK 0x0001
- #define SMTO_ABORTIFHUNG 0x0002
- #endif /* !NONCMESSAGES */
- /*
- * WM_MOUSEACTIVATE Return Codes
- */
- #define MA_ACTIVATE 1
- #define MA_ACTIVATEANDEAT 2
- #define MA_NOACTIVATE 3
- #define MA_NOACTIVATEANDEAT 4
- /*
- * WM_SETICON / WM_GETICON Type Codes
- */
- #define ICON_SMALL 0
- #define ICON_BIG 1
- // end_r_winuser
- WINUSERAPI
- UINT
- WINAPI
- RegisterWindowMessageA(
- LPCSTR lpString);
- WINUSERAPI
- UINT
- WINAPI
- RegisterWindowMessageW(
- LPCWSTR lpString);
- #ifdef UNICODE
- #define RegisterWindowMessage RegisterWindowMessageW
- #else
- #define RegisterWindowMessage RegisterWindowMessageA
- #endif // !UNICODE
- // begin_r_winuser
- /*
- * WM_SIZE message wParam values
- */
- #define SIZE_RESTORED 0
- #define SIZE_MINIMIZED 1
- #define SIZE_MAXIMIZED 2
- #define SIZE_MAXSHOW 3
- #define SIZE_MAXHIDE 4
- /*
- * Obsolete constant names
- */
- #define SIZENORMAL SIZE_RESTORED
- #define SIZEICONIC SIZE_MINIMIZED
- #define SIZEFULLSCREEN SIZE_MAXIMIZED
- #define SIZEZOOMSHOW SIZE_MAXSHOW
- #define SIZEZOOMHIDE SIZE_MAXHIDE
- // end_r_winuser
- /*
- * WM_WINDOWPOSCHANGING/CHANGED struct pointed to by lParam
- */
- typedef struct tagWINDOWPOS {
- HWND hwnd;
- HWND hwndInsertAfter;
- int x;
- int y;
- int cx;
- int cy;
- UINT flags;
- } WINDOWPOS, *LPWINDOWPOS, *PWINDOWPOS;
- /*
- * WM_NCCALCSIZE parameter structure
- */
- typedef struct tagNCCALCSIZE_PARAMS {
- RECT rgrc[3];
- PWINDOWPOS lppos;
- } NCCALCSIZE_PARAMS, *LPNCCALCSIZE_PARAMS;
- // begin_r_winuser
- /*
- * WM_NCCALCSIZE "window valid rect" return values
- */
- #define WVR_ALIGNTOP 0x0010
- #define WVR_ALIGNLEFT 0x0020
- #define WVR_ALIGNBOTTOM 0x0040
- #define WVR_ALIGNRIGHT 0x0080
- #define WVR_HREDRAW 0x0100
- #define WVR_VREDRAW 0x0200
- #define WVR_REDRAW (WVR_HREDRAW |
- WVR_VREDRAW)
- #define WVR_VALIDRECTS 0x0400
- #ifndef NOKEYSTATES
- /*
- * Key State Masks for Mouse Messages
- */
- #define MK_LBUTTON 0x0001
- #define MK_RBUTTON 0x0002
- #define MK_SHIFT 0x0004
- #define MK_CONTROL 0x0008
- #define MK_MBUTTON 0x0010
- #if (_WIN32_WINDOWS >= 0x045A)
- #define MK_XBUTTON1 0x0020
- #define MK_XBUTTON2 0x0040
- #endif // (_WIN32_WINDOWS >= 0x045A)
- #endif /* !NOKEYSTATES */
- #if(_WIN32_WINDOWS >= 0x040a)
- #ifndef NOTRACKMOUSEEVENT
- #define TME_HOVER 0x00000001
- #define TME_LEAVE 0x00000002
- #define TME_NONCLIENT 0x00000010
- #define TME_QUERY 0x40000000
- #define TME_CANCEL 0x80000000
- #define HOVER_DEFAULT 0xFFFFFFFF
- // end_r_winuser
- typedef struct tagTRACKMOUSEEVENT {
- DWORD cbSize;
- DWORD dwFlags;
- HWND hwndTrack;
- DWORD dwHoverTime;
- } TRACKMOUSEEVENT, *LPTRACKMOUSEEVENT;
- WINUSERAPI
- BOOL
- WINAPI
- TrackMouseEvent(
- LPTRACKMOUSEEVENT lpEventTrack);
- // begin_r_winuser
- #endif /* !NOTRACKMOUSEEVENT */
- #endif /* _WIN32_WINDOWS >= 0x040a */
- // end_r_winuser
- #endif /* !NOWINMESSAGES */
- #ifndef NOWINSTYLES
- // begin_r_winuser
- /*
- * Window Styles
- */
- #define WS_OVERLAPPED 0x00000000L
- #define WS_POPUP 0x80000000L
- #define WS_CHILD 0x40000000L
- #define WS_MINIMIZE 0x20000000L
- #define WS_VISIBLE 0x10000000L
- #define WS_DISABLED 0x08000000L
- #define WS_CLIPSIBLINGS 0x04000000L
- #define WS_CLIPCHILDREN 0x02000000L
- #define WS_MAXIMIZE 0x01000000L
- #define WS_CAPTION 0x00C00000L /* WS_BORDER | WS_DLGFRAME */
- #define WS_BORDER 0x00800000L
- #define WS_DLGFRAME 0x00400000L
- #define WS_VSCROLL 0x00200000L
- #define WS_HSCROLL 0x00100000L
- #define WS_SYSMENU 0x00080000L
- #define WS_THICKFRAME 0x00040000L
- #define WS_GROUP 0x00020000L
- #define WS_TABSTOP 0x00010000L
- #define WS_MINIMIZEBOX 0x00020000L
- #define WS_MAXIMIZEBOX 0x00010000L
- #define WS_TILED WS_OVERLAPPED
- #define WS_ICONIC WS_MINIMIZE
- #define WS_SIZEBOX WS_THICKFRAME
- #define WS_TILEDWINDOW WS_OVERLAPPEDWINDOW
- /*
- * Common Window Styles
- */
- #define WS_OVERLAPPEDWINDOW (WS_OVERLAPPED |
- WS_CAPTION |
- WS_SYSMENU |
- WS_THICKFRAME |
- WS_MINIMIZEBOX |
- WS_MAXIMIZEBOX)
- #define WS_POPUPWINDOW (WS_POPUP |
- WS_BORDER |
- WS_SYSMENU)
- #define WS_CHILDWINDOW (WS_CHILD)
- /*
- * Extended Window Styles
- */
- #define WS_EX_DLGMODALFRAME 0x00000001L
- #define WS_EX_NOPARENTNOTIFY 0x00000004L
- #define WS_EX_TOPMOST 0x00000008L
- #define WS_EX_ACCEPTFILES 0x00000010L
- #define WS_EX_TRANSPARENT 0x00000020L
- #if(WINVER >= 0x0400)
- #define WS_EX_MDICHILD 0x00000040L
- #define WS_EX_TOOLWINDOW 0x00000080L
- #define WS_EX_WINDOWEDGE 0x00000100L
- #define WS_EX_CLIENTEDGE 0x00000200L
- #define WS_EX_CONTEXTHELP 0x00000400L
- #define WS_EX_RIGHT 0x00001000L
- #define WS_EX_LEFT 0x00000000L
- #define WS_EX_RTLREADING 0x00002000L
- #define WS_EX_LTRREADING 0x00000000L
- #define WS_EX_LEFTSCROLLBAR 0x00004000L
- #define WS_EX_RIGHTSCROLLBAR 0x00000000L
- #define WS_EX_CONTROLPARENT 0x00010000L
- #define WS_EX_STATICEDGE 0x00020000L
- #define WS_EX_APPWINDOW 0x00040000L
- #define WS_EX_OVERLAPPEDWINDOW (WS_EX_WINDOWEDGE | WS_EX_CLIENTEDGE)
- #define WS_EX_PALETTEWINDOW (WS_EX_WINDOWEDGE | WS_EX_TOOLWINDOW | WS_EX_TOPMOST)
- #endif /* WINVER >= 0x0400 */
- #if (WINVER >= 0x040A)
- #ifdef USE_MIRRORING
- #define WS_EX_NOINHERITLAYOUT 0x00100000L // Disable inheritence of mirroring by children
- #define WS_EX_LAYOUTRTL 0x00400000L // Right to left mirroring
- #endif //USE_MIRRORING
- #endif // (WINVER >= 0x040A)
- #if (_WIN32_WINDOWS >= 0x045A)
- #define WS_EX_NOACTIVATE 0x08000000L
- #endif // (_WIN32_WINDOWS >= 0x045A)
- /*
- * Class styles
- */
- #define CS_VREDRAW 0x0001
- #define CS_HREDRAW 0x0002
- #define CS_DBLCLKS 0x0008
- #define CS_OWNDC 0x0020
- #define CS_CLASSDC 0x0040
- #define CS_PARENTDC 0x0080
- #define CS_NOCLOSE 0x0200
- #define CS_SAVEBITS 0x0800
- #define CS_BYTEALIGNCLIENT 0x1000
- #define CS_BYTEALIGNWINDOW 0x2000
- #define CS_GLOBALCLASS 0x4000
- #define CS_IME 0x00010000
- // end_r_winuser
- #endif /* !NOWINSTYLES */
- #if(WINVER >= 0x0400)
- /* WM_PRINT flags */
- #define PRF_CHECKVISIBLE 0x00000001L
- #define PRF_NONCLIENT 0x00000002L
- #define PRF_CLIENT 0x00000004L
- #define PRF_ERASEBKGND 0x00000008L
- #define PRF_CHILDREN 0x00000010L
- #define PRF_OWNED 0x00000020L
- /* 3D border styles */
- #define BDR_RAISEDOUTER 0x0001
- #define BDR_SUNKENOUTER 0x0002
- #define BDR_RAISEDINNER 0x0004
- #define BDR_SUNKENINNER 0x0008
- #define EDGE_RAISED (BDR_RAISEDOUTER | BDR_RAISEDINNER)
- #define EDGE_SUNKEN (BDR_SUNKENOUTER | BDR_SUNKENINNER)
- #define EDGE_ETCHED (BDR_SUNKENOUTER | BDR_RAISEDINNER)
- #define EDGE_BUMP (BDR_RAISEDOUTER | BDR_SUNKENINNER)
- /* Border flags */
- #define BF_LEFT 0x0001
- #define BF_TOP 0x0002
- #define BF_RIGHT 0x0004
- #define BF_BOTTOM 0x0008
- #define BF_TOPLEFT (BF_TOP | BF_LEFT)
- #define BF_TOPRIGHT (BF_TOP | BF_RIGHT)
- #define BF_BOTTOMLEFT (BF_BOTTOM | BF_LEFT)
- #define BF_BOTTOMRIGHT (BF_BOTTOM | BF_RIGHT)
- #define BF_RECT (BF_LEFT | BF_TOP | BF_RIGHT | BF_BOTTOM)
- #define BF_DIAGONAL 0x0010
- // For diagonal lines, the BF_RECT flags specify the end point of the
- // vector bounded by the rectangle parameter.
- #define BF_DIAGONAL_ENDTOPRIGHT (BF_DIAGONAL | BF_TOP | BF_RIGHT)
- #define BF_DIAGONAL_ENDTOPLEFT (BF_DIAGONAL | BF_TOP | BF_LEFT)
- #define BF_DIAGONAL_ENDBOTTOMLEFT (BF_DIAGONAL | BF_BOTTOM | BF_LEFT)
- #define BF_DIAGONAL_ENDBOTTOMRIGHT (BF_DIAGONAL | BF_BOTTOM | BF_RIGHT)
- #define BF_MIDDLE 0x0800 /* Fill in the middle */
- #define BF_SOFT 0x1000 /* For softer buttons */
- #define BF_ADJUST 0x2000 /* Calculate the space left over */
- #define BF_FLAT 0x4000 /* For flat rather than 3D borders */
- #define BF_MONO 0x8000 /* For monochrome borders */
- WINUSERAPI
- BOOL
- WINAPI
- DrawEdge(HDC hdc, LPRECT qrc, UINT edge, UINT grfFlags);
- /* flags for DrawFrameControl */
- #define DFC_CAPTION 1
- #define DFC_MENU 2
- #define DFC_SCROLL 3
- #define DFC_BUTTON 4
- #if (_WIN32_WINDOWS >= 0x040A)
- #define DFC_POPUPMENU 5
- #endif
- #define DFCS_CAPTIONCLOSE 0x0000
- #define DFCS_CAPTIONMIN 0x0001
- #define DFCS_CAPTIONMAX 0x0002
- #define DFCS_CAPTIONRESTORE 0x0003
- #define DFCS_CAPTIONHELP 0x0004
- #define DFCS_MENUARROW 0x0000
- #define DFCS_MENUCHECK 0x0001
- #define DFCS_MENUBULLET 0x0002
- #define DFCS_MENUARROWRIGHT 0x0004
- #define DFCS_SCROLLUP 0x0000
- #define DFCS_SCROLLDOWN 0x0001
- #define DFCS_SCROLLLEFT 0x0002
- #define DFCS_SCROLLRIGHT 0x0003
- #define DFCS_SCROLLCOMBOBOX 0x0005
- #define DFCS_SCROLLSIZEGRIP 0x0008
- #define DFCS_SCROLLSIZEGRIPRIGHT 0x0010
- #define DFCS_BUTTONCHECK 0x0000
- #define DFCS_BUTTONRADIOIMAGE 0x0001
- #define DFCS_BUTTONRADIOMASK 0x0002
- #define DFCS_BUTTONRADIO 0x0004
- #define DFCS_BUTTON3STATE 0x0008
- #define DFCS_BUTTONPUSH 0x0010
- #define DFCS_INACTIVE 0x0100
- #define DFCS_PUSHED 0x0200
- #define DFCS_CHECKED 0x0400
- #if (_WIN32_WINDOWS >= 0x040A)
- #define DFCS_TRANSPARENT 0x0800
- #define DFCS_HOT 0x1000
- #endif
- #define DFCS_ADJUSTRECT 0x2000
- #define DFCS_FLAT 0x4000
- #define DFCS_MONO 0x8000
- WINUSERAPI
- BOOL
- WINAPI
- DrawFrameControl(HDC, LPRECT, UINT, UINT);
- /* flags for DrawCaption */
- #define DC_ACTIVE 0x0001
- #define DC_SMALLCAP 0x0002
- #define DC_ICON 0x0004
- #define DC_TEXT 0x0008
- #define DC_INBUTTON 0x0010
- #if (_WIN32_WINDOWS >= 0x040A)
- #define DC_GRADIENT 0x0020
- #endif // (_WIN32_WINDOWS >= 0x040A)
- WINUSERAPI
- BOOL
- WINAPI
- DrawCaption(HWND, HDC, CONST RECT *, UINT);
- #define IDANI_OPEN 1
- #define IDANI_CLOSE 2
- #define IDANI_CAPTION 3
- #define IDANI_BORDER 4
- #define IDANI_SLIDE 5
- WINUSERAPI
- BOOL
- WINAPI
- DrawAnimatedRects(HWND hwnd, int idAni, CONST RECT * lprcFrom, CONST RECT * lprcTo);
- #endif /* WINVER >= 0x0400 */
- #if(_WIN32_WINDOWS >= 0x040a)
- #define PAS_IN 0x0001
- #define PAS_OUT 0x0002
- #define PAS_LEFT 0x0004
- #define PAS_RIGHT 0x0008
- #define PAS_UP 0x0010
- #define PAS_DOWN 0x0020
- #endif /* _WIN32_WINDOWS >= 0x040a */
- #ifndef NOCLIPBOARD
- // begin_r_winuser
- /*
- * Predefined Clipboard Formats
- */
- #define CF_TEXT 1
- #define CF_BITMAP 2
- #define CF_METAFILEPICT 3
- #define CF_SYLK 4
- #define CF_DIF 5
- #define CF_TIFF 6
- #define CF_OEMTEXT 7
- #define CF_DIB 8
- #define CF_PALETTE 9
- #define CF_PENDATA 10
- #define CF_RIFF 11
- #define CF_WAVE 12
- #define CF_UNICODETEXT 13
- #define CF_ENHMETAFILE 14
- #if(WINVER >= 0x0400)
- #define CF_HDROP 15
- #define CF_LOCALE 16
- #define CF_MAX 17
- #endif /* WINVER >= 0x0400 */
- #define CF_OWNERDISPLAY 0x0080
- #define CF_DSPTEXT 0x0081
- #define CF_DSPBITMAP 0x0082
- #define CF_DSPMETAFILEPICT 0x0083
- #define CF_DSPENHMETAFILE 0x008E
- /*
- * "Private" formats don't get GlobalFree()'d
- */
- #define CF_PRIVATEFIRST 0x0200
- #define CF_PRIVATELAST 0x02FF
- /*
- * "GDIOBJ" formats do get DeleteObject()'d
- */
- #define CF_GDIOBJFIRST 0x0300
- #define CF_GDIOBJLAST 0x03FF
- // end_r_winuser
- #endif /* !NOCLIPBOARD */
- /*
- * Defines for the fVirt field of the Accelerator table structure.
- */
- #define FVIRTKEY TRUE /* Assumed to be == TRUE */
- #define FNOINVERT 0x02
- #define FSHIFT 0x04
- #define FCONTROL 0x08
- #define FALT 0x10
- typedef struct tagACCEL {
- BYTE fVirt; /* Also called the flags field */
- WORD key;
- WORD cmd;
- } ACCEL, *LPACCEL;
- typedef struct tagPAINTSTRUCT {
- HDC hdc;
- BOOL fErase;
- RECT rcPaint;
- BOOL fRestore;
- BOOL fIncUpdate;
- BYTE rgbReserved[32];
- } PAINTSTRUCT, *PPAINTSTRUCT, *NPPAINTSTRUCT, *LPPAINTSTRUCT;
- typedef struct tagCREATESTRUCTA {
- LPVOID lpCreateParams;
- HINSTANCE hInstance;
- HMENU hMenu;
- HWND hwndParent;
- int cy;
- int cx;
- int y;
- int x;
- LONG style;
- LPCSTR lpszName;
- LPCSTR lpszClass;
- DWORD dwExStyle;
- } CREATESTRUCTA, *LPCREATESTRUCTA;
- typedef struct tagCREATESTRUCTW {
- LPVOID lpCreateParams;
- HINSTANCE hInstance;
- HMENU hMenu;
- HWND hwndParent;
- int cy;
- int cx;
- int y;
- int x;
- LONG style;
- LPCWSTR lpszName;
- LPCWSTR lpszClass;
- DWORD dwExStyle;
- } CREATESTRUCTW, *LPCREATESTRUCTW;
- #ifdef UNICODE
- typedef CREATESTRUCTW CREATESTRUCT;
- typedef LPCREATESTRUCTW LPCREATESTRUCT;
- #else
- typedef CREATESTRUCTA CREATESTRUCT;
- typedef LPCREATESTRUCTA LPCREATESTRUCT;
- #endif // UNICODE
- typedef struct tagWINDOWPLACEMENT {
- UINT length;
- UINT flags;
- UINT showCmd;
- POINT ptMinPosition;
- POINT ptMaxPosition;
- RECT rcNormalPosition;
- } WINDOWPLACEMENT;
- typedef WINDOWPLACEMENT *PWINDOWPLACEMENT, *LPWINDOWPLACEMENT;
- #define WPF_SETMINPOSITION 0x0001
- #define WPF_RESTORETOMAXIMIZED 0x0002
- #if(WINVER >= 0x0400)
- typedef struct tagNMHDR
- {
- HWND hwndFrom;
- UINT idFrom;
- UINT code; // NM_ code
- } NMHDR;
- typedef NMHDR FAR * LPNMHDR;
- typedef struct tagSTYLESTRUCT
- {
- DWORD styleOld;
- DWORD styleNew;
- } STYLESTRUCT, * LPSTYLESTRUCT;
- #endif /* WINVER >= 0x0400 */
- /*
- * Owner draw control types
- */
- #define ODT_MENU 1
- #define ODT_LISTBOX 2
- #define ODT_COMBOBOX 3
- #define ODT_BUTTON 4
- #if(WINVER >= 0x0400)
- #define ODT_STATIC 5
- #endif /* WINVER >= 0x0400 */
- /*
- * Owner draw actions
- */
- #define ODA_DRAWENTIRE 0x0001
- #define ODA_SELECT 0x0002
- #define ODA_FOCUS 0x0004
- /*
- * Owner draw state
- */
- #define ODS_SELECTED 0x0001
- #define ODS_GRAYED 0x0002
- #define ODS_DISABLED 0x0004
- #define ODS_CHECKED 0x0008
- #define ODS_FOCUS 0x0010
- #if(WINVER >= 0x0400)
- #define ODS_DEFAULT 0x0020
- #define ODS_COMBOBOXEDIT 0x1000
- #endif /* WINVER >= 0x0400 */
- #if (_WIN32_WINDOWS >= 0x040A)
- #define ODS_HOTLIGHT 0x0040
- #define ODS_INACTIVE 0x0080
- #endif
- /*
- * MEASUREITEMSTRUCT for ownerdraw
- */
- typedef struct tagMEASUREITEMSTRUCT {
- UINT CtlType;
- UINT CtlID;
- UINT itemID;
- UINT itemWidth;
- UINT itemHeight;
- DWORD itemData;
- } MEASUREITEMSTRUCT, NEAR *PMEASUREITEMSTRUCT, FAR *LPMEASUREITEMSTRUCT;
- /*
- * DRAWITEMSTRUCT for ownerdraw
- */
- typedef struct tagDRAWITEMSTRUCT {
- UINT CtlType;
- UINT CtlID;
- UINT itemID;
- UINT itemAction;
- UINT itemState;
- HWND hwndItem;
- HDC hDC;
- RECT rcItem;
- DWORD itemData;
- } DRAWITEMSTRUCT, NEAR *PDRAWITEMSTRUCT, FAR *LPDRAWITEMSTRUCT;
- /*
- * DELETEITEMSTRUCT for ownerdraw
- */
- typedef struct tagDELETEITEMSTRUCT {
- UINT CtlType;
- UINT CtlID;
- UINT itemID;
- HWND hwndItem;
- UINT itemData;
- } DELETEITEMSTRUCT, NEAR *PDELETEITEMSTRUCT, FAR *LPDELETEITEMSTRUCT;
- /*
- * COMPAREITEMSTUCT for ownerdraw sorting
- */
- typedef struct tagCOMPAREITEMSTRUCT {
- UINT CtlType;
- UINT CtlID;
- HWND hwndItem;
- UINT itemID1;
- DWORD itemData1;
- UINT itemID2;
- DWORD itemData2;
- DWORD dwLocaleId;
- } COMPAREITEMSTRUCT, NEAR *PCOMPAREITEMSTRUCT, FAR *LPCOMPAREITEMSTRUCT;
- #ifndef NOMSG
- /*
- * Message Function Templates
- */
- WINUSERAPI
- BOOL
- WINAPI
- GetMessageA(
- LPMSG lpMsg,
- HWND hWnd ,
- UINT wMsgFilterMin,
- UINT wMsgFilterMax);
- WINUSERAPI
- BOOL
- WINAPI
- GetMessageW(
- LPMSG lpMsg,
- HWND hWnd ,
- UINT wMsgFilterMin,
- UINT wMsgFilterMax);
- #ifdef UNICODE
- #define GetMessage GetMessageW
- #else
- #define GetMessage GetMessageA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- TranslateMessage(
- CONST MSG *lpMsg);
- WINUSERAPI
- LONG
- WINAPI
- DispatchMessageA(
- CONST MSG *lpMsg);
- WINUSERAPI
- LONG
- WINAPI
- DispatchMessageW(
- CONST MSG *lpMsg);
- #ifdef UNICODE
- #define DispatchMessage DispatchMessageW
- #else
- #define DispatchMessage DispatchMessageA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- SetMessageQueue(
- int cMessagesMax);
- WINUSERAPI
- BOOL
- WINAPI
- PeekMessageA(
- LPMSG lpMsg,
- HWND hWnd ,
- UINT wMsgFilterMin,
- UINT wMsgFilterMax,
- UINT wRemoveMsg);
- WINUSERAPI
- BOOL
- WINAPI
- PeekMessageW(
- LPMSG lpMsg,
- HWND hWnd ,
- UINT wMsgFilterMin,
- UINT wMsgFilterMax,
- UINT wRemoveMsg);
- #ifdef UNICODE
- #define PeekMessage PeekMessageW
- #else
- #define PeekMessage PeekMessageA
- #endif // !UNICODE
- /*
- * PeekMessage() Options
- */
- #define PM_NOREMOVE 0x0000
- #define PM_REMOVE 0x0001
- #define PM_NOYIELD 0x0002
- #endif /* !NOMSG */
- WINUSERAPI
- BOOL
- WINAPI
- RegisterHotKey(
- HWND hWnd ,
- int id,
- UINT fsModifiers,
- UINT vk);
- WINUSERAPI
- BOOL
- WINAPI
- UnregisterHotKey(
- HWND hWnd,
- int id);
- #define MOD_ALT 0x0001
- #define MOD_CONTROL 0x0002
- #define MOD_SHIFT 0x0004
- #define MOD_WIN 0x0008
- #define MOD_SAS 0x8000 // ; internal
- #define IDHOT_SNAPWINDOW (-1) /* SHIFT-PRINTSCRN */
- #define IDHOT_SNAPDESKTOP (-2) /* PRINTSCRN */
- #ifdef WIN_INTERNAL
- #ifndef LSTRING
- #define NOLSTRING
- #endif /* LSTRING */
- #ifndef LFILEIO
- #define NOLFILEIO
- #endif /* LFILEIO */
- #endif /* WIN_INTERNAL */
- #if(WINVER >= 0x0400)
- #define EW_EXITANDEXECAPP 0x0044L
- #define ENDSESSION_LOGOFF 0x80000000
- #endif /* WINVER >= 0x0400 */
- #define EWX_LOGOFF 0
- #define EWX_SHUTDOWN 1
- #define EWX_REBOOT 2
- #define EWX_FORCE 4
- #define EWX_POWEROFF 8
- #define ExitWindows(dwReserved, Code) ExitWindowsEx(EWX_LOGOFF, 0xFFFFFFFF)
- WINUSERAPI
- BOOL
- WINAPI
- ExitWindowsEx(
- UINT uFlags,
- DWORD dwReserved);
- WINUSERAPI
- BOOL
- WINAPI
- SwapMouseButton(
- BOOL fSwap);
- WINUSERAPI
- DWORD
- WINAPI
- GetMessagePos(
- VOID);
- WINUSERAPI
- LONG
- WINAPI
- GetMessageTime(
- VOID);
- WINUSERAPI
- LONG
- WINAPI
- GetMessageExtraInfo(
- VOID);
- #if(WINVER >= 0x0400)
- WINUSERAPI
- LPARAM
- WINAPI
- SetMessageExtraInfo(
- LPARAM lParam);
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- LRESULT
- WINAPI
- SendMessageA(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- LRESULT
- WINAPI
- SendMessageW(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define SendMessage SendMessageW
- #else
- #define SendMessage SendMessageA
- #endif // !UNICODE
- WINUSERAPI
- LRESULT
- WINAPI
- SendMessageTimeoutA(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam,
- UINT fuFlags,
- UINT uTimeout,
- LPDWORD lpdwResult);
- WINUSERAPI
- LRESULT
- WINAPI
- SendMessageTimeoutW(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam,
- UINT fuFlags,
- UINT uTimeout,
- LPDWORD lpdwResult);
- #ifdef UNICODE
- #define SendMessageTimeout SendMessageTimeoutW
- #else
- #define SendMessageTimeout SendMessageTimeoutA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- SendNotifyMessageA(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- BOOL
- WINAPI
- SendNotifyMessageW(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define SendNotifyMessage SendNotifyMessageW
- #else
- #define SendNotifyMessage SendNotifyMessageA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- SendMessageCallbackA(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam,
- SENDASYNCPROC lpResultCallBack,
- DWORD dwData);
- WINUSERAPI
- BOOL
- WINAPI
- SendMessageCallbackW(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam,
- SENDASYNCPROC lpResultCallBack,
- DWORD dwData);
- #ifdef UNICODE
- #define SendMessageCallback SendMessageCallbackW
- #else
- #define SendMessageCallback SendMessageCallbackA
- #endif // !UNICODE
- #if(WINVER >= 0x0400)
- #if defined(_WIN32_WINNT)
- WINUSERAPI long WINAPI BroadcastSystemMessageA(DWORD, LPDWORD, UINT, WPARAM, LPARAM);
- WINUSERAPI long WINAPI BroadcastSystemMessageW(DWORD, LPDWORD, UINT, WPARAM, LPARAM);
- #ifdef UNICODE
- #define BroadcastSystemMessage BroadcastSystemMessageW
- #else
- #define BroadcastSystemMessage BroadcastSystemMessageA
- #endif // !UNICODE
- #elif defined(_WIN32_WINDOWS)
- // The Win95 version isn't A/W decorated
- WINUSERAPI long WINAPI BroadcastSystemMessage(DWORD, LPDWORD, UINT, WPARAM, LPARAM);
- #endif
- //Broadcast Special Message Recipient list
- #define BSM_ALLCOMPONENTS 0x00000000
- #define BSM_VXDS 0x00000001
- #define BSM_NETDRIVER 0x00000002
- #define BSM_INSTALLABLEDRIVERS 0x00000004
- #define BSM_APPLICATIONS 0x00000008
- #define BSM_ALLDESKTOPS 0x00000010
- //Broadcast Special Message Flags
- #define BSF_QUERY 0x00000001
- #define BSF_IGNORECURRENTTASK 0x00000002
- #define BSF_FLUSHDISK 0x00000004
- #define BSF_NOHANG 0x00000008
- #define BSF_POSTMESSAGE 0x00000010
- #define BSF_FORCEIFHUNG 0x00000020
- #define BSF_NOTIMEOUTIFNOTHUNG 0x00000040
- typedef struct tagBROADCASTSYSMSG
- {
- UINT uiMessage;
- WPARAM wParam;
- LPARAM lParam;
- } BROADCASTSYSMSG;
- typedef BROADCASTSYSMSG FAR *LPBROADCASTSYSMSG;
- #define DBWF_LPARAMPOINTER 0x8000
- #define BROADCAST_QUERY_DENY 0x424D5144 // Return this value to deny a query.
- #endif /* WINVER >= 0x0400 */
- // RegisterDeviceNotification
- #if (WINVER >= 0x040A)
- typedef PVOID HDEVNOTIFY;
- typedef HDEVNOTIFY *PHDEVNOTIFY;
- #define DEVICE_NOTIFY_WINDOW_HANDLE 0x00000000
- #define DEVICE_NOTIFY_SERVICE_HANDLE 0x00000001
- #define DEVICE_NOTIFY_COMPLETION_HANDLE 0x00000002
- WINUSERAPI
- HDEVNOTIFY
- WINAPI
- RegisterDeviceNotificationA(
- IN HANDLE hRecipient,
- IN LPVOID NotificationFilter,
- IN DWORD Flags
- );
- WINUSERAPI
- HDEVNOTIFY
- WINAPI
- RegisterDeviceNotificationW(
- IN HANDLE hRecipient,
- IN LPVOID NotificationFilter,
- IN DWORD Flags
- );
- #ifdef UNICODE
- #define RegisterDeviceNotification RegisterDeviceNotificationW
- #else
- #define RegisterDeviceNotification RegisterDeviceNotificationA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- UnregisterDeviceNotification(
- IN HDEVNOTIFY Handle
- );
- #endif /* WINVER >= 0x040A */
- WINUSERAPI
- BOOL
- WINAPI
- PostMessageA(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- BOOL
- WINAPI
- PostMessageW(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define PostMessage PostMessageW
- #else
- #define PostMessage PostMessageA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- PostThreadMessageA(
- DWORD idThread,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- BOOL
- WINAPI
- PostThreadMessageW(
- DWORD idThread,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define PostThreadMessage PostThreadMessageW
- #else
- #define PostThreadMessage PostThreadMessageA
- #endif // !UNICODE
- #define PostAppMessageA(idThread, wMsg, wParam, lParam)
- PostThreadMessageA((DWORD)idThread, wMsg, wParam, lParam)
- #define PostAppMessageW(idThread, wMsg, wParam, lParam)
- PostThreadMessageW((DWORD)idThread, wMsg, wParam, lParam)
- #ifdef UNICODE
- #define PostAppMessage PostAppMessageW
- #else
- #define PostAppMessage PostAppMessageA
- #endif // !UNICODE
- /*
- * Special HWND value for use with PostMessage() and SendMessage()
- */
- #define HWND_BROADCAST ((HWND)0xffff)
- #if (_WIN32_WINNT >= 0x0500)
- #define HWND_MESSAGE ((HWND)-3)
- #endif
- WINUSERAPI
- BOOL
- WINAPI
- AttachThreadInput(
- DWORD idAttach,
- DWORD idAttachTo,
- BOOL fAttach);
- WINUSERAPI
- BOOL
- WINAPI
- ReplyMessage(
- LRESULT lResult);
- WINUSERAPI
- BOOL
- WINAPI
- WaitMessage(
- VOID);
- WINUSERAPI
- DWORD
- WINAPI
- WaitForInputIdle(
- HANDLE hProcess,
- DWORD dwMilliseconds);
- WINUSERAPI
- LRESULT
- WINAPI
- DefWindowProcA(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- LRESULT
- WINAPI
- DefWindowProcW(
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define DefWindowProc DefWindowProcW
- #else
- #define DefWindowProc DefWindowProcA
- #endif // !UNICODE
- WINUSERAPI
- VOID
- WINAPI
- PostQuitMessage(
- int nExitCode);
- #ifdef STRICT
- WINUSERAPI
- LRESULT
- WINAPI
- CallWindowProcA(
- WNDPROC lpPrevWndFunc,
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- LRESULT
- WINAPI
- CallWindowProcW(
- WNDPROC lpPrevWndFunc,
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define CallWindowProc CallWindowProcW
- #else
- #define CallWindowProc CallWindowProcA
- #endif // !UNICODE
- #else /* !STRICT */
- WINUSERAPI
- LRESULT
- WINAPI
- CallWindowProcA(
- FARPROC lpPrevWndFunc,
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- LRESULT
- WINAPI
- CallWindowProcW(
- FARPROC lpPrevWndFunc,
- HWND hWnd,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define CallWindowProc CallWindowProcW
- #else
- #define CallWindowProc CallWindowProcA
- #endif // !UNICODE
- #endif /* !STRICT */
- WINUSERAPI
- BOOL
- WINAPI
- InSendMessage(
- VOID);
- #if (_WIN32_WINDOWS >= 0x040A)
- WINUSERAPI
- DWORD
- WINAPI
- InSendMessageEx(
- LPVOID lpReserved);
- /*
- * InSendMessageEx return value
- */
- #define ISMEX_NOSEND 0x00000000
- #define ISMEX_SEND 0x00000001
- #define ISMEX_NOTIFY 0x00000002
- #define ISMEX_CALLBACK 0x00000004
- #define ISMEX_REPLIED 0x00000008
- #endif
- WINUSERAPI
- UINT
- WINAPI
- GetDoubleClickTime(
- VOID);
- WINUSERAPI
- BOOL
- WINAPI
- SetDoubleClickTime(
- UINT);
- WINUSERAPI
- ATOM
- WINAPI
- RegisterClassA(
- CONST WNDCLASSA *lpWndClass);
- WINUSERAPI
- ATOM
- WINAPI
- RegisterClassW(
- CONST WNDCLASSW *lpWndClass);
- #ifdef UNICODE
- #define RegisterClass RegisterClassW
- #else
- #define RegisterClass RegisterClassA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- UnregisterClassA(
- LPCSTR lpClassName,
- HINSTANCE hInstance);
- WINUSERAPI
- BOOL
- WINAPI
- UnregisterClassW(
- LPCWSTR lpClassName,
- HINSTANCE hInstance);
- #ifdef UNICODE
- #define UnregisterClass UnregisterClassW
- #else
- #define UnregisterClass UnregisterClassA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- GetClassInfoA(
- HINSTANCE hInstance ,
- LPCSTR lpClassName,
- LPWNDCLASSA lpWndClass);
- WINUSERAPI
- BOOL
- WINAPI
- GetClassInfoW(
- HINSTANCE hInstance ,
- LPCWSTR lpClassName,
- LPWNDCLASSW lpWndClass);
- #ifdef UNICODE
- #define GetClassInfo GetClassInfoW
- #else
- #define GetClassInfo GetClassInfoA
- #endif // !UNICODE
- #if(WINVER >= 0x0400)
- WINUSERAPI
- ATOM
- WINAPI
- RegisterClassExA(CONST WNDCLASSEXA *);
- WINUSERAPI
- ATOM
- WINAPI
- RegisterClassExW(CONST WNDCLASSEXW *);
- #ifdef UNICODE
- #define RegisterClassEx RegisterClassExW
- #else
- #define RegisterClassEx RegisterClassExA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- GetClassInfoExA(HINSTANCE, LPCSTR, LPWNDCLASSEXA);
- WINUSERAPI
- BOOL
- WINAPI
- GetClassInfoExW(HINSTANCE, LPCWSTR, LPWNDCLASSEXW);
- #ifdef UNICODE
- #define GetClassInfoEx GetClassInfoExW
- #else
- #define GetClassInfoEx GetClassInfoExA
- #endif // !UNICODE
- #endif /* WINVER >= 0x0400 */
- #define CW_USEDEFAULT ((int)0x80000000)
- /*
- * Special value for CreateWindow, et al.
- */
- #define HWND_DESKTOP ((HWND)0)
- WINUSERAPI
- HWND
- WINAPI
- CreateWindowExA(
- DWORD dwExStyle,
- LPCSTR lpClassName,
- LPCSTR lpWindowName,
- DWORD dwStyle,
- int X,
- int Y,
- int nWidth,
- int nHeight,
- HWND hWndParent ,
- HMENU hMenu,
- HINSTANCE hInstance,
- LPVOID lpParam);
- WINUSERAPI
- HWND
- WINAPI
- CreateWindowExW(
- DWORD dwExStyle,
- LPCWSTR lpClassName,
- LPCWSTR lpWindowName,
- DWORD dwStyle,
- int X,
- int Y,
- int nWidth,
- int nHeight,
- HWND hWndParent ,
- HMENU hMenu,
- HINSTANCE hInstance,
- LPVOID lpParam);
- #ifdef UNICODE
- #define CreateWindowEx CreateWindowExW
- #else
- #define CreateWindowEx CreateWindowExA
- #endif // !UNICODE
- #define CreateWindowA(lpClassName, lpWindowName, dwStyle, x, y,
- nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
- CreateWindowExA(0L, lpClassName, lpWindowName, dwStyle, x, y,
- nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
- #define CreateWindowW(lpClassName, lpWindowName, dwStyle, x, y,
- nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
- CreateWindowExW(0L, lpClassName, lpWindowName, dwStyle, x, y,
- nWidth, nHeight, hWndParent, hMenu, hInstance, lpParam)
- #ifdef UNICODE
- #define CreateWindow CreateWindowW
- #else
- #define CreateWindow CreateWindowA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- IsWindow(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- IsMenu(
- HMENU hMenu);
- WINUSERAPI
- BOOL
- WINAPI
- IsChild(
- HWND hWndParent,
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- DestroyWindow(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- ShowWindow(
- HWND hWnd,
- int nCmdShow);
- #if (_WIN32_WINDOWS >= 0x040A)
- WINUSERAPI
- BOOL
- WINAPI
- AnimateWindow(
- HWND hWnd,
- DWORD dwTime,
- DWORD dwFlags);
- #endif // (_WIN32_WINDOWS >= 0x040A)
- #if(WINVER >= 0x0400)
- WINUSERAPI
- BOOL
- WINAPI
- ShowWindowAsync(
- HWND hWnd,
- int nCmdShow);
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- BOOL
- WINAPI
- FlashWindow(
- HWND hWnd,
- BOOL bInvert);
- #if (_WIN32_WINDOWS >= 0x040A)
- #define FLASHW_STOP 0
- #define FLASHW_CAPTION 0x0001
- #define FLASHW_TRAY 0x0002
- #define FLASHW_ALL (FLASHW_CAPTION | FLASHW_TRAY)
- #define FLASHW_TIMER 0x0004
- #define FLASHW_TIMERNOFG 0x000C
- typedef struct tagFLASHWINFO
- {
- UINT cbSize;
- HWND hwnd;
- DWORD dwFlags;
- UINT uCount;
- DWORD dwTimeOut;
- } FLASHWINFO, FAR * LPFLASHWINFO;
- WINUSERAPI
- BOOL
- WINAPI
- FlashWindowEx(
- LPFLASHWINFO lpfw);
- #endif
- WINUSERAPI
- BOOL
- WINAPI
- ShowOwnedPopups(
- HWND hWnd,
- BOOL fShow);
- WINUSERAPI
- BOOL
- WINAPI
- OpenIcon(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- CloseWindow(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- MoveWindow(
- HWND hWnd,
- int X,
- int Y,
- int nWidth,
- int nHeight,
- BOOL bRepaint);
- WINUSERAPI
- BOOL
- WINAPI
- SetWindowPos(
- HWND hWnd,
- HWND hWndInsertAfter ,
- int X,
- int Y,
- int cx,
- int cy,
- UINT uFlags);
- WINUSERAPI
- BOOL
- WINAPI
- GetWindowPlacement(
- HWND hWnd,
- WINDOWPLACEMENT *lpwndpl);
- WINUSERAPI
- BOOL
- WINAPI
- SetWindowPlacement(
- HWND hWnd,
- CONST WINDOWPLACEMENT *lpwndpl);
- #ifndef NODEFERWINDOWPOS
- WINUSERAPI
- HDWP
- WINAPI
- BeginDeferWindowPos(
- int nNumWindows);
- WINUSERAPI
- HDWP
- WINAPI
- DeferWindowPos(
- HDWP hWinPosInfo,
- HWND hWnd,
- HWND hWndInsertAfter ,
- int x,
- int y,
- int cx,
- int cy,
- UINT uFlags);
- WINUSERAPI
- BOOL
- WINAPI
- EndDeferWindowPos(
- HDWP hWinPosInfo);
- #endif /* !NODEFERWINDOWPOS */
- WINUSERAPI
- BOOL
- WINAPI
- IsWindowVisible(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- IsIconic(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- AnyPopup(
- VOID);
- WINUSERAPI
- BOOL
- WINAPI
- BringWindowToTop(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- IsZoomed(
- HWND hWnd);
- /*
- * SetWindowPos Flags
- */
- #define SWP_NOSIZE 0x0001
- #define SWP_NOMOVE 0x0002
- #define SWP_NOZORDER 0x0004
- #define SWP_NOREDRAW 0x0008
- #define SWP_NOACTIVATE 0x0010
- #define SWP_FRAMECHANGED 0x0020 /* The frame changed: send WM_NCCALCSIZE */
- #define SWP_SHOWWINDOW 0x0040
- #define SWP_HIDEWINDOW 0x0080
- #define SWP_NOCOPYBITS 0x0100
- #define SWP_NOOWNERZORDER 0x0200 /* Don't do owner Z ordering */
- #define SWP_NOSENDCHANGING 0x0400 /* Don't send WM_WINDOWPOSCHANGING */
- #define SWP_DRAWFRAME SWP_FRAMECHANGED
- #define SWP_NOREPOSITION SWP_NOOWNERZORDER
- #if(WINVER >= 0x0400)
- #define SWP_DEFERERASE 0x2000
- #define SWP_ASYNCWINDOWPOS 0x4000
- #endif /* WINVER >= 0x0400 */
- #define HWND_TOP ((HWND)0)
- #define HWND_BOTTOM ((HWND)1)
- #define HWND_TOPMOST ((HWND)-1)
- #define HWND_NOTOPMOST ((HWND)-2)
- #ifndef NOCTLMGR
- /*
- * WARNING:
- * The following structures must NOT be DWORD padded because they are
- * followed by strings, etc that do not have to be DWORD aligned.
- */
- #include <pshpack2.h>
- /*
- * original NT 32 bit dialog template:
- */
- typedef struct {
- DWORD style;
- DWORD dwExtendedStyle;
- WORD cdit;
- short x;
- short y;
- short cx;
- short cy;
- } DLGTEMPLATE;
- typedef DLGTEMPLATE *LPDLGTEMPLATEA;
- typedef DLGTEMPLATE *LPDLGTEMPLATEW;
- #ifdef UNICODE
- typedef LPDLGTEMPLATEW LPDLGTEMPLATE;
- #else
- typedef LPDLGTEMPLATEA LPDLGTEMPLATE;
- #endif // UNICODE
- typedef CONST DLGTEMPLATE *LPCDLGTEMPLATEA;
- typedef CONST DLGTEMPLATE *LPCDLGTEMPLATEW;
- #ifdef UNICODE
- typedef LPCDLGTEMPLATEW LPCDLGTEMPLATE;
- #else
- typedef LPCDLGTEMPLATEA LPCDLGTEMPLATE;
- #endif // UNICODE
- /*
- * 32 bit Dialog item template.
- */
- typedef struct {
- DWORD style;
- DWORD dwExtendedStyle;
- short x;
- short y;
- short cx;
- short cy;
- WORD id;
- } DLGITEMTEMPLATE;
- typedef DLGITEMTEMPLATE *PDLGITEMTEMPLATEA;
- typedef DLGITEMTEMPLATE *PDLGITEMTEMPLATEW;
- #ifdef UNICODE
- typedef PDLGITEMTEMPLATEW PDLGITEMTEMPLATE;
- #else
- typedef PDLGITEMTEMPLATEA PDLGITEMTEMPLATE;
- #endif // UNICODE
- typedef DLGITEMTEMPLATE *LPDLGITEMTEMPLATEA;
- typedef DLGITEMTEMPLATE *LPDLGITEMTEMPLATEW;
- #ifdef UNICODE
- typedef LPDLGITEMTEMPLATEW LPDLGITEMTEMPLATE;
- #else
- typedef LPDLGITEMTEMPLATEA LPDLGITEMTEMPLATE;
- #endif // UNICODE
- #include <poppack.h> /* Resume normal packing */
- WINUSERAPI
- HWND
- WINAPI
- CreateDialogParamA(
- HINSTANCE hInstance,
- LPCSTR lpTemplateName,
- HWND hWndParent ,
- DLGPROC lpDialogFunc,
- LPARAM dwInitParam);
- WINUSERAPI
- HWND
- WINAPI
- CreateDialogParamW(
- HINSTANCE hInstance,
- LPCWSTR lpTemplateName,
- HWND hWndParent ,
- DLGPROC lpDialogFunc,
- LPARAM dwInitParam);
- #ifdef UNICODE
- #define CreateDialogParam CreateDialogParamW
- #else
- #define CreateDialogParam CreateDialogParamA
- #endif // !UNICODE
- WINUSERAPI
- HWND
- WINAPI
- CreateDialogIndirectParamA(
- HINSTANCE hInstance,
- LPCDLGTEMPLATEA lpTemplate,
- HWND hWndParent,
- DLGPROC lpDialogFunc,
- LPARAM dwInitParam);
- WINUSERAPI
- HWND
- WINAPI
- CreateDialogIndirectParamW(
- HINSTANCE hInstance,
- LPCDLGTEMPLATEW lpTemplate,
- HWND hWndParent,
- DLGPROC lpDialogFunc,
- LPARAM dwInitParam);
- #ifdef UNICODE
- #define CreateDialogIndirectParam CreateDialogIndirectParamW
- #else
- #define CreateDialogIndirectParam CreateDialogIndirectParamA
- #endif // !UNICODE
- #define CreateDialogA(hInstance, lpName, hWndParent, lpDialogFunc)
- CreateDialogParamA(hInstance, lpName, hWndParent, lpDialogFunc, 0L)
- #define CreateDialogW(hInstance, lpName, hWndParent, lpDialogFunc)
- CreateDialogParamW(hInstance, lpName, hWndParent, lpDialogFunc, 0L)
- #ifdef UNICODE
- #define CreateDialog CreateDialogW
- #else
- #define CreateDialog CreateDialogA
- #endif // !UNICODE
- #define CreateDialogIndirectA(hInstance, lpTemplate, hWndParent, lpDialogFunc)
- CreateDialogIndirectParamA(hInstance, lpTemplate, hWndParent, lpDialogFunc, 0L)
- #define CreateDialogIndirectW(hInstance, lpTemplate, hWndParent, lpDialogFunc)
- CreateDialogIndirectParamW(hInstance, lpTemplate, hWndParent, lpDialogFunc, 0L)
- #ifdef UNICODE
- #define CreateDialogIndirect CreateDialogIndirectW
- #else
- #define CreateDialogIndirect CreateDialogIndirectA
- #endif // !UNICODE
- WINUSERAPI
- int
- WINAPI
- DialogBoxParamA(
- HINSTANCE hInstance,
- LPCSTR lpTemplateName,
- HWND hWndParent ,
- DLGPROC lpDialogFunc,
- LPARAM dwInitParam);
- WINUSERAPI
- int
- WINAPI
- DialogBoxParamW(
- HINSTANCE hInstance,
- LPCWSTR lpTemplateName,
- HWND hWndParent ,
- DLGPROC lpDialogFunc,
- LPARAM dwInitParam);
- #ifdef UNICODE
- #define DialogBoxParam DialogBoxParamW
- #else
- #define DialogBoxParam DialogBoxParamA
- #endif // !UNICODE
- WINUSERAPI
- int
- WINAPI
- DialogBoxIndirectParamA(
- HINSTANCE hInstance,
- LPCDLGTEMPLATEA hDialogTemplate,
- HWND hWndParent ,
- DLGPROC lpDialogFunc,
- LPARAM dwInitParam);
- WINUSERAPI
- int
- WINAPI
- DialogBoxIndirectParamW(
- HINSTANCE hInstance,
- LPCDLGTEMPLATEW hDialogTemplate,
- HWND hWndParent ,
- DLGPROC lpDialogFunc,
- LPARAM dwInitParam);
- #ifdef UNICODE
- #define DialogBoxIndirectParam DialogBoxIndirectParamW
- #else
- #define DialogBoxIndirectParam DialogBoxIndirectParamA
- #endif // !UNICODE
- #define DialogBoxA(hInstance, lpTemplate, hWndParent, lpDialogFunc)
- DialogBoxParamA(hInstance, lpTemplate, hWndParent, lpDialogFunc, 0L)
- #define DialogBoxW(hInstance, lpTemplate, hWndParent, lpDialogFunc)
- DialogBoxParamW(hInstance, lpTemplate, hWndParent, lpDialogFunc, 0L)
- #ifdef UNICODE
- #define DialogBox DialogBoxW
- #else
- #define DialogBox DialogBoxA
- #endif // !UNICODE
- #define DialogBoxIndirectA(hInstance, lpTemplate, hWndParent, lpDialogFunc)
- DialogBoxIndirectParamA(hInstance, lpTemplate, hWndParent, lpDialogFunc, 0L)
- #define DialogBoxIndirectW(hInstance, lpTemplate, hWndParent, lpDialogFunc)
- DialogBoxIndirectParamW(hInstance, lpTemplate, hWndParent, lpDialogFunc, 0L)
- #ifdef UNICODE
- #define DialogBoxIndirect DialogBoxIndirectW
- #else
- #define DialogBoxIndirect DialogBoxIndirectA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- EndDialog(
- HWND hDlg,
- int nResult);
- WINUSERAPI
- HWND
- WINAPI
- GetDlgItem(
- HWND hDlg,
- int nIDDlgItem);
- WINUSERAPI
- BOOL
- WINAPI
- SetDlgItemInt(
- HWND hDlg,
- int nIDDlgItem,
- UINT uValue,
- BOOL bSigned);
- WINUSERAPI
- UINT
- WINAPI
- GetDlgItemInt(
- HWND hDlg,
- int nIDDlgItem,
- BOOL *lpTranslated,
- BOOL bSigned);
- WINUSERAPI
- BOOL
- WINAPI
- SetDlgItemTextA(
- HWND hDlg,
- int nIDDlgItem,
- LPCSTR lpString);
- WINUSERAPI
- BOOL
- WINAPI
- SetDlgItemTextW(
- HWND hDlg,
- int nIDDlgItem,
- LPCWSTR lpString);
- #ifdef UNICODE
- #define SetDlgItemText SetDlgItemTextW
- #else
- #define SetDlgItemText SetDlgItemTextA
- #endif // !UNICODE
- WINUSERAPI
- UINT
- WINAPI
- GetDlgItemTextA(
- HWND hDlg,
- int nIDDlgItem,
- LPSTR lpString,
- int nMaxCount);
- WINUSERAPI
- UINT
- WINAPI
- GetDlgItemTextW(
- HWND hDlg,
- int nIDDlgItem,
- LPWSTR lpString,
- int nMaxCount);
- #ifdef UNICODE
- #define GetDlgItemText GetDlgItemTextW
- #else
- #define GetDlgItemText GetDlgItemTextA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- CheckDlgButton(
- HWND hDlg,
- int nIDButton,
- UINT uCheck);
- WINUSERAPI
- BOOL
- WINAPI
- CheckRadioButton(
- HWND hDlg,
- int nIDFirstButton,
- int nIDLastButton,
- int nIDCheckButton);
- WINUSERAPI
- UINT
- WINAPI
- IsDlgButtonChecked(
- HWND hDlg,
- int nIDButton);
- WINUSERAPI
- LONG
- WINAPI
- SendDlgItemMessageA(
- HWND hDlg,
- int nIDDlgItem,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- LONG
- WINAPI
- SendDlgItemMessageW(
- HWND hDlg,
- int nIDDlgItem,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define SendDlgItemMessage SendDlgItemMessageW
- #else
- #define SendDlgItemMessage SendDlgItemMessageA
- #endif // !UNICODE
- WINUSERAPI
- HWND
- WINAPI
- GetNextDlgGroupItem(
- HWND hDlg,
- HWND hCtl,
- BOOL bPrevious);
- WINUSERAPI
- HWND
- WINAPI
- GetNextDlgTabItem(
- HWND hDlg,
- HWND hCtl,
- BOOL bPrevious);
- WINUSERAPI
- int
- WINAPI
- GetDlgCtrlID(
- HWND hWnd);
- WINUSERAPI
- long
- WINAPI
- GetDialogBaseUnits(VOID);
- WINUSERAPI
- LRESULT
- WINAPI
- DefDlgProcA(
- HWND hDlg,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- WINUSERAPI
- LRESULT
- WINAPI
- DefDlgProcW(
- HWND hDlg,
- UINT Msg,
- WPARAM wParam,
- LPARAM lParam);
- #ifdef UNICODE
- #define DefDlgProc DefDlgProcW
- #else
- #define DefDlgProc DefDlgProcA
- #endif // !UNICODE
- /*
- * Window extra byted needed for private dialog classes.
- */
- #define DLGWINDOWEXTRA 30
- #endif /* !NOCTLMGR */
- #ifndef NOMSG
- WINUSERAPI
- BOOL
- WINAPI
- CallMsgFilterA(
- LPMSG lpMsg,
- int nCode);
- WINUSERAPI
- BOOL
- WINAPI
- CallMsgFilterW(
- LPMSG lpMsg,
- int nCode);
- #ifdef UNICODE
- #define CallMsgFilter CallMsgFilterW
- #else
- #define CallMsgFilter CallMsgFilterA
- #endif // !UNICODE
- #endif /* !NOMSG */
- #ifndef NOCLIPBOARD
- /*
- * Clipboard Manager Functions
- */
- WINUSERAPI
- BOOL
- WINAPI
- OpenClipboard(
- HWND hWndNewOwner);
- WINUSERAPI
- BOOL
- WINAPI
- CloseClipboard(
- VOID);
- #if (_WIN32_WINDOWS >= 0x040A)
- WINUSERAPI
- DWORD
- WINAPI
- GetClipboardSequenceNumber(
- VOID);
- #endif
- WINUSERAPI
- HWND
- WINAPI
- GetClipboardOwner(
- VOID);
- WINUSERAPI
- HWND
- WINAPI
- SetClipboardViewer(
- HWND hWndNewViewer);
- WINUSERAPI
- HWND
- WINAPI
- GetClipboardViewer(
- VOID);
- WINUSERAPI
- BOOL
- WINAPI
- ChangeClipboardChain(
- HWND hWndRemove,
- HWND hWndNewNext);
- WINUSERAPI
- HANDLE
- WINAPI
- SetClipboardData(
- UINT uFormat,
- HANDLE hMem);
- WINUSERAPI
- HANDLE
- WINAPI
- GetClipboardData(
- UINT uFormat);
- WINUSERAPI
- UINT
- WINAPI
- RegisterClipboardFormatA(
- LPCSTR lpszFormat);
- WINUSERAPI
- UINT
- WINAPI
- RegisterClipboardFormatW(
- LPCWSTR lpszFormat);
- #ifdef UNICODE
- #define RegisterClipboardFormat RegisterClipboardFormatW
- #else
- #define RegisterClipboardFormat RegisterClipboardFormatA
- #endif // !UNICODE
- WINUSERAPI
- int
- WINAPI
- CountClipboardFormats(
- VOID);
- WINUSERAPI
- UINT
- WINAPI
- EnumClipboardFormats(
- UINT format);
- WINUSERAPI
- int
- WINAPI
- GetClipboardFormatNameA(
- UINT format,
- LPSTR lpszFormatName,
- int cchMaxCount);
- WINUSERAPI
- int
- WINAPI
- GetClipboardFormatNameW(
- UINT format,
- LPWSTR lpszFormatName,
- int cchMaxCount);
- #ifdef UNICODE
- #define GetClipboardFormatName GetClipboardFormatNameW
- #else
- #define GetClipboardFormatName GetClipboardFormatNameA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- EmptyClipboard(
- VOID);
- WINUSERAPI
- BOOL
- WINAPI
- IsClipboardFormatAvailable(
- UINT format);
- WINUSERAPI
- int
- WINAPI
- GetPriorityClipboardFormat(
- UINT *paFormatPriorityList,
- int cFormats);
- WINUSERAPI
- HWND
- WINAPI
- GetOpenClipboardWindow(
- VOID);
- #endif /* !NOCLIPBOARD */
- /*
- * Character Translation Routines
- */
- WINUSERAPI
- BOOL
- WINAPI
- CharToOemA(
- LPCSTR lpszSrc,
- LPSTR lpszDst);
- WINUSERAPI
- BOOL
- WINAPI
- CharToOemW(
- LPCWSTR lpszSrc,
- LPSTR lpszDst);
- #ifdef UNICODE
- #define CharToOem CharToOemW
- #else
- #define CharToOem CharToOemA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- OemToCharA(
- LPCSTR lpszSrc,
- LPSTR lpszDst);
- WINUSERAPI
- BOOL
- WINAPI
- OemToCharW(
- LPCSTR lpszSrc,
- LPWSTR lpszDst);
- #ifdef UNICODE
- #define OemToChar OemToCharW
- #else
- #define OemToChar OemToCharA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- CharToOemBuffA(
- LPCSTR lpszSrc,
- LPSTR lpszDst,
- DWORD cchDstLength);
- WINUSERAPI
- BOOL
- WINAPI
- CharToOemBuffW(
- LPCWSTR lpszSrc,
- LPSTR lpszDst,
- DWORD cchDstLength);
- #ifdef UNICODE
- #define CharToOemBuff CharToOemBuffW
- #else
- #define CharToOemBuff CharToOemBuffA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- OemToCharBuffA(
- LPCSTR lpszSrc,
- LPSTR lpszDst,
- DWORD cchDstLength);
- WINUSERAPI
- BOOL
- WINAPI
- OemToCharBuffW(
- LPCSTR lpszSrc,
- LPWSTR lpszDst,
- DWORD cchDstLength);
- #ifdef UNICODE
- #define OemToCharBuff OemToCharBuffW
- #else
- #define OemToCharBuff OemToCharBuffA
- #endif // !UNICODE
- WINUSERAPI
- LPSTR
- WINAPI
- CharUpperA(
- LPSTR lpsz);
- WINUSERAPI
- LPWSTR
- WINAPI
- CharUpperW(
- LPWSTR lpsz);
- #ifdef UNICODE
- #define CharUpper CharUpperW
- #else
- #define CharUpper CharUpperA
- #endif // !UNICODE
- WINUSERAPI
- DWORD
- WINAPI
- CharUpperBuffA(
- LPSTR lpsz,
- DWORD cchLength);
- WINUSERAPI
- DWORD
- WINAPI
- CharUpperBuffW(
- LPWSTR lpsz,
- DWORD cchLength);
- #ifdef UNICODE
- #define CharUpperBuff CharUpperBuffW
- #else
- #define CharUpperBuff CharUpperBuffA
- #endif // !UNICODE
- WINUSERAPI
- LPSTR
- WINAPI
- CharLowerA(
- LPSTR lpsz);
- WINUSERAPI
- LPWSTR
- WINAPI
- CharLowerW(
- LPWSTR lpsz);
- #ifdef UNICODE
- #define CharLower CharLowerW
- #else
- #define CharLower CharLowerA
- #endif // !UNICODE
- WINUSERAPI
- DWORD
- WINAPI
- CharLowerBuffA(
- LPSTR lpsz,
- DWORD cchLength);
- WINUSERAPI
- DWORD
- WINAPI
- CharLowerBuffW(
- LPWSTR lpsz,
- DWORD cchLength);
- #ifdef UNICODE
- #define CharLowerBuff CharLowerBuffW
- #else
- #define CharLowerBuff CharLowerBuffA
- #endif // !UNICODE
- WINUSERAPI
- LPSTR
- WINAPI
- CharNextA(
- LPCSTR lpsz);
- WINUSERAPI
- LPWSTR
- WINAPI
- CharNextW(
- LPCWSTR lpsz);
- #ifdef UNICODE
- #define CharNext CharNextW
- #else
- #define CharNext CharNextA
- #endif // !UNICODE
- WINUSERAPI
- LPSTR
- WINAPI
- CharPrevA(
- LPCSTR lpszStart,
- LPCSTR lpszCurrent);
- WINUSERAPI
- LPWSTR
- WINAPI
- CharPrevW(
- LPCWSTR lpszStart,
- LPCWSTR lpszCurrent);
- #ifdef UNICODE
- #define CharPrev CharPrevW
- #else
- #define CharPrev CharPrevA
- #endif // !UNICODE
- #if(WINVER >= 0x0400)
- WINUSERAPI
- LPSTR
- WINAPI
- CharNextExA(
- WORD CodePage,
- LPCSTR lpCurrentChar,
- DWORD dwFlags);
- WINUSERAPI
- LPSTR
- WINAPI
- CharPrevExA(
- WORD CodePage,
- LPCSTR lpStart,
- LPCSTR lpCurrentChar,
- DWORD dwFlags);
- #endif /* WINVER >= 0x0400 */
- /*
- * Compatibility defines for character translation routines
- */
- #define AnsiToOem CharToOemA
- #define OemToAnsi OemToCharA
- #define AnsiToOemBuff CharToOemBuffA
- #define OemToAnsiBuff OemToCharBuffA
- #define AnsiUpper CharUpperA
- #define AnsiUpperBuff CharUpperBuffA
- #define AnsiLower CharLowerA
- #define AnsiLowerBuff CharLowerBuffA
- #define AnsiNext CharNextA
- #define AnsiPrev CharPrevA
- #ifndef NOLANGUAGE
- /*
- * Language dependent Routines
- */
- WINUSERAPI
- BOOL
- WINAPI
- IsCharAlphaA(
- CHAR ch);
- WINUSERAPI
- BOOL
- WINAPI
- IsCharAlphaW(
- WCHAR ch);
- #ifdef UNICODE
- #define IsCharAlpha IsCharAlphaW
- #else
- #define IsCharAlpha IsCharAlphaA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- IsCharAlphaNumericA(
- CHAR ch);
- WINUSERAPI
- BOOL
- WINAPI
- IsCharAlphaNumericW(
- WCHAR ch);
- #ifdef UNICODE
- #define IsCharAlphaNumeric IsCharAlphaNumericW
- #else
- #define IsCharAlphaNumeric IsCharAlphaNumericA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- IsCharUpperA(
- CHAR ch);
- WINUSERAPI
- BOOL
- WINAPI
- IsCharUpperW(
- WCHAR ch);
- #ifdef UNICODE
- #define IsCharUpper IsCharUpperW
- #else
- #define IsCharUpper IsCharUpperA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- IsCharLowerA(
- CHAR ch);
- WINUSERAPI
- BOOL
- WINAPI
- IsCharLowerW(
- WCHAR ch);
- #ifdef UNICODE
- #define IsCharLower IsCharLowerW
- #else
- #define IsCharLower IsCharLowerA
- #endif // !UNICODE
- #endif /* !NOLANGUAGE */
- WINUSERAPI
- HWND
- WINAPI
- SetFocus(
- HWND hWnd);
- WINUSERAPI
- HWND
- WINAPI
- GetActiveWindow(
- VOID);
- WINUSERAPI
- HWND
- WINAPI
- GetFocus(
- VOID);
- WINUSERAPI
- UINT
- WINAPI
- GetKBCodePage(
- VOID);
- WINUSERAPI
- SHORT
- WINAPI
- GetKeyState(
- int nVirtKey);
- WINUSERAPI
- SHORT
- WINAPI
- GetAsyncKeyState(
- int vKey);
- WINUSERAPI
- BOOL
- WINAPI
- GetKeyboardState(
- PBYTE lpKeyState);
- WINUSERAPI
- BOOL
- WINAPI
- SetKeyboardState(
- LPBYTE lpKeyState);
- WINUSERAPI
- int
- WINAPI
- GetKeyNameTextA(
- LONG lParam,
- LPSTR lpString,
- int nSize
- );
- WINUSERAPI
- int
- WINAPI
- GetKeyNameTextW(
- LONG lParam,
- LPWSTR lpString,
- int nSize
- );
- #ifdef UNICODE
- #define GetKeyNameText GetKeyNameTextW
- #else
- #define GetKeyNameText GetKeyNameTextA
- #endif // !UNICODE
- WINUSERAPI
- int
- WINAPI
- GetKeyboardType(
- int nTypeFlag);
- WINUSERAPI
- int
- WINAPI
- ToAscii(
- UINT uVirtKey,
- UINT uScanCode,
- PBYTE lpKeyState,
- LPWORD lpChar,
- UINT uFlags);
- #if(WINVER >= 0x0400)
- WINUSERAPI
- int
- WINAPI
- ToAsciiEx(
- UINT uVirtKey,
- UINT uScanCode,
- PBYTE lpKeyState,
- LPWORD lpChar,
- UINT uFlags,
- HKL dwhkl);
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- int
- WINAPI
- ToUnicode(
- UINT wVirtKey,
- UINT wScanCode,
- PBYTE lpKeyState,
- LPWSTR pwszBuff,
- int cchBuff,
- UINT wFlags);
- WINUSERAPI
- DWORD
- WINAPI
- OemKeyScan(
- WORD wOemChar);
- WINUSERAPI
- SHORT
- WINAPI
- VkKeyScanA(
- CHAR ch);
- WINUSERAPI
- SHORT
- WINAPI
- VkKeyScanW(
- WCHAR ch);
- #ifdef UNICODE
- #define VkKeyScan VkKeyScanW
- #else
- #define VkKeyScan VkKeyScanA
- #endif // !UNICODE
- #if(WINVER >= 0x0400)
- WINUSERAPI
- SHORT
- WINAPI VkKeyScanExA(
- CHAR ch,
- HKL dwhkl);
- WINUSERAPI
- SHORT
- WINAPI VkKeyScanExW(
- WCHAR ch,
- HKL dwhkl);
- #ifdef UNICODE
- #define VkKeyScanEx VkKeyScanExW
- #else
- #define VkKeyScanEx VkKeyScanExA
- #endif // !UNICODE
- #endif /* WINVER >= 0x0400 */
- #define KEYEVENTF_EXTENDEDKEY 0x0001
- #define KEYEVENTF_KEYUP 0x0002
- #if (_WIN32_WINDOWS >= 0x045A)
- #define KEYEVENTF_UNICODE 0x0004
- #define KEYEVENTF_SCANCODE 0x0008
- #endif // (_WIN32_WINDOWS >= 0x045A)
- WINUSERAPI
- VOID
- WINAPI
- keybd_event(
- BYTE bVk,
- BYTE bScan,
- DWORD dwFlags,
- DWORD dwExtraInfo);
- #define MOUSEEVENTF_MOVE 0x0001 /* mouse move */
- #define MOUSEEVENTF_LEFTDOWN 0x0002 /* left button down */
- #define MOUSEEVENTF_LEFTUP 0x0004 /* left button up */
- #define MOUSEEVENTF_RIGHTDOWN 0x0008 /* right button down */
- #define MOUSEEVENTF_RIGHTUP 0x0010 /* right button up */
- #define MOUSEEVENTF_MIDDLEDOWN 0x0020 /* middle button down */
- #define MOUSEEVENTF_MIDDLEUP 0x0040 /* middle button up */
- #define MOUSEEVENTF_WHEEL 0x0800 /* wheel button rolled */
- #define MOUSEEVENTF_ABSOLUTE 0x8000 /* absolute move */
- WINUSERAPI
- VOID
- WINAPI
- mouse_event(
- DWORD dwFlags,
- DWORD dx,
- DWORD dy,
- DWORD dwData,
- DWORD dwExtraInfo);
- #if (_WIN32_WINDOWS > 0x040A)
- typedef struct tagMOUSEINPUT {
- LONG dx;
- LONG dy;
- DWORD mouseData;
- DWORD dwFlags;
- DWORD time;
- DWORD dwExtraInfo;
- } MOUSEINPUT, *PMOUSEINPUT, FAR* LPMOUSEINPUT;
- typedef struct tagKEYBDINPUT {
- WORD wVk;
- WORD wScan;
- DWORD dwFlags;
- DWORD time;
- DWORD dwExtraInfo;
- } KEYBDINPUT, *PKEYBDINPUT, FAR* LPKEYBDINPUT;
- typedef struct tagHARDWAREINPUT {
- DWORD uMsg;
- WORD wParamL;
- WORD wParamH;
- } HARDWAREINPUT, *PHARDWAREINPUT, FAR* LPHARDWAREINPUT;
- #define INPUT_MOUSE 0
- #define INPUT_KEYBOARD 1
- #define INPUT_HARDWARE 2
- typedef struct tagINPUT {
- DWORD type;
- union
- {
- MOUSEINPUT mi;
- KEYBDINPUT ki;
- HARDWAREINPUT hi;
- };
- } INPUT, *PINPUT, FAR* LPINPUT;
- WINUSERAPI
- UINT
- WINAPI
- SendInput(
- UINT cInputs, // number of input in the array
- LPINPUT pInputs, // array of inputs
- int cbSize); // sizeof(INPUT)
- #endif // (_WIN32_WINDOWS > 0x040A)
- WINUSERAPI
- UINT
- WINAPI
- MapVirtualKeyA(
- UINT uCode,
- UINT uMapType);
- WINUSERAPI
- UINT
- WINAPI
- MapVirtualKeyW(
- UINT uCode,
- UINT uMapType);
- #ifdef UNICODE
- #define MapVirtualKey MapVirtualKeyW
- #else
- #define MapVirtualKey MapVirtualKeyA
- #endif // !UNICODE
- #if(WINVER >= 0x0400)
- WINUSERAPI
- UINT
- WINAPI
- MapVirtualKeyExA(
- UINT uCode,
- UINT uMapType,
- HKL dwhkl);
- WINUSERAPI
- UINT
- WINAPI
- MapVirtualKeyExW(
- UINT uCode,
- UINT uMapType,
- HKL dwhkl);
- #ifdef UNICODE
- #define MapVirtualKeyEx MapVirtualKeyExW
- #else
- #define MapVirtualKeyEx MapVirtualKeyExA
- #endif // !UNICODE
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- BOOL
- WINAPI
- GetInputState(
- VOID);
- WINUSERAPI
- DWORD
- WINAPI
- GetQueueStatus(
- UINT flags);
- WINUSERAPI
- HWND
- WINAPI
- GetCapture(
- VOID);
- WINUSERAPI
- HWND
- WINAPI
- SetCapture(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- ReleaseCapture(
- VOID);
- WINUSERAPI
- DWORD
- WINAPI
- MsgWaitForMultipleObjects(
- DWORD nCount,
- LPHANDLE pHandles,
- BOOL fWaitAll,
- DWORD dwMilliseconds,
- DWORD dwWakeMask);
- WINUSERAPI
- DWORD
- WINAPI
- MsgWaitForMultipleObjectsEx(
- DWORD nCount,
- LPHANDLE pHandles,
- DWORD dwMilliseconds,
- DWORD dwWakeMask,
- DWORD dwFlags);
- #define MWMO_WAITALL 0x0001
- #define MWMO_ALERTABLE 0x0002
- #define MWMO_INPUTAVAILABLE 0x0004
- /*
- * Queue status flags for GetQueueStatus() and MsgWaitForMultipleObjects()
- */
- #define QS_KEY 0x0001
- #define QS_MOUSEMOVE 0x0002
- #define QS_MOUSEBUTTON 0x0004
- #define QS_POSTMESSAGE 0x0008
- #define QS_TIMER 0x0010
- #define QS_PAINT 0x0020
- #define QS_SENDMESSAGE 0x0040
- #define QS_HOTKEY 0x0080
- #define QS_ALLPOSTMESSAGE 0x0100
- #define QS_MOUSE (QS_MOUSEMOVE |
- QS_MOUSEBUTTON)
- #define QS_INPUT (QS_MOUSE |
- QS_KEY)
- #define QS_ALLEVENTS (QS_INPUT |
- QS_POSTMESSAGE |
- QS_TIMER |
- QS_PAINT |
- QS_HOTKEY)
- #define QS_ALLINPUT (QS_INPUT |
- QS_POSTMESSAGE |
- QS_TIMER |
- QS_PAINT |
- QS_HOTKEY |
- QS_SENDMESSAGE)
- /*
- * Windows Functions
- */
- WINUSERAPI
- UINT
- WINAPI
- SetTimer(
- HWND hWnd ,
- UINT nIDEvent,
- UINT uElapse,
- TIMERPROC lpTimerFunc);
- WINUSERAPI
- BOOL
- WINAPI
- KillTimer(
- HWND hWnd,
- UINT uIDEvent);
- WINUSERAPI
- BOOL
- WINAPI
- IsWindowUnicode(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- EnableWindow(
- HWND hWnd,
- BOOL bEnable);
- WINUSERAPI
- BOOL
- WINAPI
- IsWindowEnabled(
- HWND hWnd);
- WINUSERAPI
- HACCEL
- WINAPI
- LoadAcceleratorsA(
- HINSTANCE hInstance,
- LPCSTR lpTableName);
- WINUSERAPI
- HACCEL
- WINAPI
- LoadAcceleratorsW(
- HINSTANCE hInstance,
- LPCWSTR lpTableName);
- #ifdef UNICODE
- #define LoadAccelerators LoadAcceleratorsW
- #else
- #define LoadAccelerators LoadAcceleratorsA
- #endif // !UNICODE
- WINUSERAPI
- HACCEL
- WINAPI
- CreateAcceleratorTableA(
- LPACCEL, int);
- WINUSERAPI
- HACCEL
- WINAPI
- CreateAcceleratorTableW(
- LPACCEL, int);
- #ifdef UNICODE
- #define CreateAcceleratorTable CreateAcceleratorTableW
- #else
- #define CreateAcceleratorTable CreateAcceleratorTableA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- DestroyAcceleratorTable(
- HACCEL hAccel);
- WINUSERAPI
- int
- WINAPI
- CopyAcceleratorTableA(
- HACCEL hAccelSrc,
- LPACCEL lpAccelDst,
- int cAccelEntries);
- WINUSERAPI
- int
- WINAPI
- CopyAcceleratorTableW(
- HACCEL hAccelSrc,
- LPACCEL lpAccelDst,
- int cAccelEntries);
- #ifdef UNICODE
- #define CopyAcceleratorTable CopyAcceleratorTableW
- #else
- #define CopyAcceleratorTable CopyAcceleratorTableA
- #endif // !UNICODE
- #ifndef NOMSG
- WINUSERAPI
- int
- WINAPI
- TranslateAcceleratorA(
- HWND hWnd,
- HACCEL hAccTable,
- LPMSG lpMsg);
- WINUSERAPI
- int
- WINAPI
- TranslateAcceleratorW(
- HWND hWnd,
- HACCEL hAccTable,
- LPMSG lpMsg);
- #ifdef UNICODE
- #define TranslateAccelerator TranslateAcceleratorW
- #else
- #define TranslateAccelerator TranslateAcceleratorA
- #endif // !UNICODE
- #endif /* !NOMSG */
- #ifndef NOSYSMETRICS
- /*
- * GetSystemMetrics() codes
- */
- #define SM_CXSCREEN 0
- #define SM_CYSCREEN 1
- #define SM_CXVSCROLL 2
- #define SM_CYHSCROLL 3
- #define SM_CYCAPTION 4
- #define SM_CXBORDER 5
- #define SM_CYBORDER 6
- #define SM_CXDLGFRAME 7
- #define SM_CYDLGFRAME 8
- #define SM_CYVTHUMB 9
- #define SM_CXHTHUMB 10
- #define SM_CXICON 11
- #define SM_CYICON 12
- #define SM_CXCURSOR 13
- #define SM_CYCURSOR 14
- #define SM_CYMENU 15
- #define SM_CXFULLSCREEN 16
- #define SM_CYFULLSCREEN 17
- #define SM_CYKANJIWINDOW 18
- #define SM_MOUSEPRESENT 19
- #define SM_CYVSCROLL 20
- #define SM_CXHSCROLL 21
- #define SM_DEBUG 22
- #define SM_SWAPBUTTON 23
- #define SM_RESERVED1 24
- #define SM_RESERVED2 25
- #define SM_RESERVED3 26
- #define SM_RESERVED4 27
- #define SM_CXMIN 28
- #define SM_CYMIN 29
- #define SM_CXSIZE 30
- #define SM_CYSIZE 31
- #define SM_CXFRAME 32
- #define SM_CYFRAME 33
- #define SM_CXMINTRACK 34
- #define SM_CYMINTRACK 35
- #define SM_CXDOUBLECLK 36
- #define SM_CYDOUBLECLK 37
- #define SM_CXICONSPACING 38
- #define SM_CYICONSPACING 39
- #define SM_MENUDROPALIGNMENT 40
- #define SM_PENWINDOWS 41
- #define SM_DBCSENABLED 42
- #define SM_CMOUSEBUTTONS 43
- #if(WINVER >= 0x0400)
- #define SM_CXFIXEDFRAME SM_CXDLGFRAME /* ;win40 name change */
- #define SM_CYFIXEDFRAME SM_CYDLGFRAME /* ;win40 name change */
- #define SM_CXSIZEFRAME SM_CXFRAME /* ;win40 name change */
- #define SM_CYSIZEFRAME SM_CYFRAME /* ;win40 name change */
- #define SM_SECURE 44
- #define SM_CXEDGE 45
- #define SM_CYEDGE 46
- #define SM_CXMINSPACING 47
- #define SM_CYMINSPACING 48
- #define SM_CXSMICON 49
- #define SM_CYSMICON 50
- #define SM_CYSMCAPTION 51
- #define SM_CXSMSIZE 52
- #define SM_CYSMSIZE 53
- #define SM_CXMENUSIZE 54
- #define SM_CYMENUSIZE 55
- #define SM_ARRANGE 56
- #define SM_CXMINIMIZED 57
- #define SM_CYMINIMIZED 58
- #define SM_CXMAXTRACK 59
- #define SM_CYMAXTRACK 60
- #define SM_CXMAXIMIZED 61
- #define SM_CYMAXIMIZED 62
- #define SM_NETWORK 63
- #define SM_CLEANBOOT 67
- #define SM_CXDRAG 68
- #define SM_CYDRAG 69
- #endif /* WINVER >= 0x0400 */
- #define SM_SHOWSOUNDS 70
- #if(WINVER >= 0x0400)
- #define SM_CXMENUCHECK 71 /* Use instead of GetMenuCheckMarkDimensions()! */
- #define SM_CYMENUCHECK 72
- #define SM_SLOWMACHINE 73
- #define SM_MIDEASTENABLED 74
- #endif /* WINVER >= 0x0400 */
- #if (_WIN32_WINDOWS >= 0x040A)
- #define SM_MOUSEWHEELPRESENT 75
- #define SM_XVIRTUALSCREEN 76
- #define SM_YVIRTUALSCREEN 77
- #define SM_CXVIRTUALSCREEN 78
- #define SM_CYVIRTUALSCREEN 79
- #define SM_CMONITORS 80
- #define SM_SAMEDISPLAYFORMAT 81
- #endif // if (_WIN32_WINDOWS >= 0x040A)
- #if (_WIN32_WINDOWS < 0x0400)
- #define SM_CMETRICS 75
- #elif (_WIN32_WINDOWS < 0x040A)
- #define SM_CMETRICS 76
- #else
- #define SM_CMETRICS 82
- #endif
- WINUSERAPI
- int
- WINAPI
- GetSystemMetrics(
- int nIndex);
- #endif /* !NOSYSMETRICS */
- #ifndef NOMENUS
- WINUSERAPI
- HMENU
- WINAPI
- LoadMenuA(
- HINSTANCE hInstance,
- LPCSTR lpMenuName);
- WINUSERAPI
- HMENU
- WINAPI
- LoadMenuW(
- HINSTANCE hInstance,
- LPCWSTR lpMenuName);
- #ifdef UNICODE
- #define LoadMenu LoadMenuW
- #else
- #define LoadMenu LoadMenuA
- #endif // !UNICODE
- WINUSERAPI
- HMENU
- WINAPI
- LoadMenuIndirectA(
- CONST MENUTEMPLATEA *lpMenuTemplate);
- WINUSERAPI
- HMENU
- WINAPI
- LoadMenuIndirectW(
- CONST MENUTEMPLATEW *lpMenuTemplate);
- #ifdef UNICODE
- #define LoadMenuIndirect LoadMenuIndirectW
- #else
- #define LoadMenuIndirect LoadMenuIndirectA
- #endif // !UNICODE
- WINUSERAPI
- HMENU
- WINAPI
- GetMenu(
- HWND hWnd);
- WINUSERAPI
- BOOL
- WINAPI
- SetMenu(
- HWND hWnd,
- HMENU hMenu);
- WINUSERAPI
- BOOL
- WINAPI
- ChangeMenuA(
- HMENU hMenu,
- UINT cmd,
- LPCSTR lpszNewItem,
- UINT cmdInsert,
- UINT flags);
- WINUSERAPI
- BOOL
- WINAPI
- ChangeMenuW(
- HMENU hMenu,
- UINT cmd,
- LPCWSTR lpszNewItem,
- UINT cmdInsert,
- UINT flags);
- #ifdef UNICODE
- #define ChangeMenu ChangeMenuW
- #else
- #define ChangeMenu ChangeMenuA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- HiliteMenuItem(
- HWND hWnd,
- HMENU hMenu,
- UINT uIDHiliteItem,
- UINT uHilite);
- WINUSERAPI
- int
- WINAPI
- GetMenuStringA(
- HMENU hMenu,
- UINT uIDItem,
- LPSTR lpString,
- int nMaxCount,
- UINT uFlag);
- WINUSERAPI
- int
- WINAPI
- GetMenuStringW(
- HMENU hMenu,
- UINT uIDItem,
- LPWSTR lpString,
- int nMaxCount,
- UINT uFlag);
- #ifdef UNICODE
- #define GetMenuString GetMenuStringW
- #else
- #define GetMenuString GetMenuStringA
- #endif // !UNICODE
- WINUSERAPI
- UINT
- WINAPI
- GetMenuState(
- HMENU hMenu,
- UINT uId,
- UINT uFlags);
- WINUSERAPI
- BOOL
- WINAPI
- DrawMenuBar(
- HWND hWnd);
- WINUSERAPI
- HMENU
- WINAPI
- GetSystemMenu(
- HWND hWnd,
- BOOL bRevert);
- WINUSERAPI
- HMENU
- WINAPI
- CreateMenu(
- VOID);
- WINUSERAPI
- HMENU
- WINAPI
- CreatePopupMenu(
- VOID);
- WINUSERAPI
- BOOL
- WINAPI
- DestroyMenu(
- HMENU hMenu);
- WINUSERAPI
- DWORD
- WINAPI
- CheckMenuItem(
- HMENU hMenu,
- UINT uIDCheckItem,
- UINT uCheck);
- WINUSERAPI
- BOOL
- WINAPI
- EnableMenuItem(
- HMENU hMenu,
- UINT uIDEnableItem,
- UINT uEnable);
- WINUSERAPI
- HMENU
- WINAPI
- GetSubMenu(
- HMENU hMenu,
- int nPos);
- WINUSERAPI
- UINT
- WINAPI
- GetMenuItemID(
- HMENU hMenu,
- int nPos);
- WINUSERAPI
- int
- WINAPI
- GetMenuItemCount(
- HMENU hMenu);
- WINUSERAPI
- BOOL
- WINAPI
- InsertMenuA(
- HMENU hMenu,
- UINT uPosition,
- UINT uFlags,
- UINT uIDNewItem,
- LPCSTR lpNewItem
- );
- WINUSERAPI
- BOOL
- WINAPI
- InsertMenuW(
- HMENU hMenu,
- UINT uPosition,
- UINT uFlags,
- UINT uIDNewItem,
- LPCWSTR lpNewItem
- );
- #ifdef UNICODE
- #define InsertMenu InsertMenuW
- #else
- #define InsertMenu InsertMenuA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- AppendMenuA(
- HMENU hMenu,
- UINT uFlags,
- UINT uIDNewItem,
- LPCSTR lpNewItem
- );
- WINUSERAPI
- BOOL
- WINAPI
- AppendMenuW(
- HMENU hMenu,
- UINT uFlags,
- UINT uIDNewItem,
- LPCWSTR lpNewItem
- );
- #ifdef UNICODE
- #define AppendMenu AppendMenuW
- #else
- #define AppendMenu AppendMenuA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- ModifyMenuA(
- HMENU hMnu,
- UINT uPosition,
- UINT uFlags,
- UINT uIDNewItem,
- LPCSTR lpNewItem
- );
- WINUSERAPI
- BOOL
- WINAPI
- ModifyMenuW(
- HMENU hMnu,
- UINT uPosition,
- UINT uFlags,
- UINT uIDNewItem,
- LPCWSTR lpNewItem
- );
- #ifdef UNICODE
- #define ModifyMenu ModifyMenuW
- #else
- #define ModifyMenu ModifyMenuA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI RemoveMenu(
- HMENU hMenu,
- UINT uPosition,
- UINT uFlags);
- WINUSERAPI
- BOOL
- WINAPI
- DeleteMenu(
- HMENU hMenu,
- UINT uPosition,
- UINT uFlags);
- WINUSERAPI
- BOOL
- WINAPI
- SetMenuItemBitmaps(
- HMENU hMenu,
- UINT uPosition,
- UINT uFlags,
- HBITMAP hBitmapUnchecked,
- HBITMAP hBitmapChecked);
- WINUSERAPI
- LONG
- WINAPI
- GetMenuCheckMarkDimensions(
- VOID);
- WINUSERAPI
- BOOL
- WINAPI
- TrackPopupMenu(
- HMENU hMenu,
- UINT uFlags,
- int x,
- int y,
- int nReserved,
- HWND hWnd,
- CONST RECT *prcRect);
- #if(WINVER >= 0x0400)
- /* return codes for WM_MENUCHAR */
- #define MNC_IGNORE 0
- #define MNC_CLOSE 1
- #define MNC_EXECUTE 2
- #define MNC_SELECT 3
- typedef struct tagTPMPARAMS
- {
- UINT cbSize; /* Size of structure */
- RECT rcExclude; /* Screen coordinates of rectangle to exclude when positioning */
- } TPMPARAMS;
- typedef TPMPARAMS FAR *LPTPMPARAMS;
- WINUSERAPI BOOL WINAPI TrackPopupMenuEx(HMENU, UINT, int, int, HWND, LPTPMPARAMS);
- #endif /* WINVER >= 0x0400 */
- #if(_WIN32_WINDOWS >= 0x040a)
- #define MNS_NOCHECK 0x80000000
- #define MNS_MODELESS 0x40000000
- #define MNS_DRAGDROP 0x20000000
- #define MNS_AUTODISMISS 0x10000000
- #define MNS_NOTIFYBYPOS 0x08000000
- #define MNS_CHECKORBMP 0x04000000
- #define MIM_MAXHEIGHT 0x00000001
- #define MIM_BACKGROUND 0x00000002
- #define MIM_HELPID 0x00000004
- #define MIM_MENUDATA 0x00000008
- #define MIM_STYLE 0x00000010
- #define MIM_APPLYTOSUBMENUS 0x80000000
- typedef struct tagMENUINFO
- {
- DWORD cbSize;
- DWORD fMask;
- DWORD dwStyle;
- UINT cyMax;
- HBRUSH hbrBack;
- DWORD dwContextHelpID;
- DWORD dwMenuData;
- } MENUINFO, FAR *LPMENUINFO;
- typedef MENUINFO CONST FAR *LPCMENUINFO;
- WINUSERAPI
- BOOL
- WINAPI
- GetMenuInfo(
- HMENU,
- LPMENUINFO);
- WINUSERAPI
- BOOL
- WINAPI
- SetMenuInfo(
- HMENU,
- LPCMENUINFO);
- WINUSERAPI
- BOOL
- WINAPI
- EndMenu(
- VOID);
- /*
- * WM_MENUDODRAGDROP return values.
- */
- #define MNDD_CONTINUE 0
- #define MNDD_ENDMENU 1
- typedef struct tagMENUGETOBJECTINFO
- {
- DWORD dwFlags;