WinUser.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:274k
- WINAPI
- SetWindowsHookA(
- IN int nFilterType,
- IN HOOKPROC pfnFilterProc);
- WINUSERAPI
- HHOOK
- WINAPI
- SetWindowsHookW(
- IN int nFilterType,
- IN HOOKPROC pfnFilterProc);
- #ifdef UNICODE
- #define SetWindowsHook SetWindowsHookW
- #else
- #define SetWindowsHook SetWindowsHookA
- #endif // !UNICODE
- #else /* !STRICT */
- WINUSERAPI
- HOOKPROC
- WINAPI
- SetWindowsHookA(
- IN int nFilterType,
- IN HOOKPROC pfnFilterProc);
- WINUSERAPI
- HOOKPROC
- WINAPI
- SetWindowsHookW(
- IN int nFilterType,
- IN HOOKPROC pfnFilterProc);
- #ifdef UNICODE
- #define SetWindowsHook SetWindowsHookW
- #else
- #define SetWindowsHook SetWindowsHookA
- #endif // !UNICODE
- #endif /* !STRICT */
- WINUSERAPI
- BOOL
- WINAPI
- UnhookWindowsHook(
- IN int nCode,
- IN HOOKPROC pfnFilterProc);
- WINUSERAPI
- HHOOK
- WINAPI
- SetWindowsHookExA(
- IN int idHook,
- IN HOOKPROC lpfn,
- IN HINSTANCE hmod,
- IN DWORD dwThreadId);
- WINUSERAPI
- HHOOK
- WINAPI
- SetWindowsHookExW(
- IN int idHook,
- IN HOOKPROC lpfn,
- IN HINSTANCE hmod,
- IN DWORD dwThreadId);
- #ifdef UNICODE
- #define SetWindowsHookEx SetWindowsHookExW
- #else
- #define SetWindowsHookEx SetWindowsHookExA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- UnhookWindowsHookEx(
- IN HHOOK hhk);
- WINUSERAPI
- LRESULT
- WINAPI
- CallNextHookEx(
- IN HHOOK hhk,
- IN int nCode,
- IN WPARAM wParam,
- IN LPARAM lParam);
- /*
- * Macros for source-level compatibility with old functions.
- */
- #ifdef STRICT
- #define DefHookProc(nCode, wParam, lParam, phhk)
- CallNextHookEx(*phhk, nCode, wParam, lParam)
- #else
- #define DefHookProc(nCode, wParam, lParam, phhk)
- CallNextHookEx((HHOOK)*phhk, nCode, wParam, lParam)
- #endif /* STRICT */
- #endif /* !NOWH */
- #ifndef NOMENUS
- /* ;win40 -- A lot of MF_* flags have been renamed as MFT_* and MFS_* flags */
- /*
- * Menu flags for Add/Check/EnableMenuItem()
- */
- #define MF_INSERT 0x00000000L
- #define MF_CHANGE 0x00000080L
- #define MF_APPEND 0x00000100L
- #define MF_DELETE 0x00000200L
- #define MF_REMOVE 0x00001000L
- #define MF_BYCOMMAND 0x00000000L
- #define MF_BYPOSITION 0x00000400L
- #define MF_SEPARATOR 0x00000800L
- #define MF_ENABLED 0x00000000L
- #define MF_GRAYED 0x00000001L
- #define MF_DISABLED 0x00000002L
- #define MF_UNCHECKED 0x00000000L
- #define MF_CHECKED 0x00000008L
- #define MF_USECHECKBITMAPS 0x00000200L
- #define MF_STRING 0x00000000L
- #define MF_BITMAP 0x00000004L
- #define MF_OWNERDRAW 0x00000100L
- #define MF_POPUP 0x00000010L
- #define MF_MENUBARBREAK 0x00000020L
- #define MF_MENUBREAK 0x00000040L
- #define MF_UNHILITE 0x00000000L
- #define MF_HILITE 0x00000080L
- #if(WINVER >= 0x0400)
- #define MF_DEFAULT 0x00001000L
- #endif /* WINVER >= 0x0400 */
- #define MF_SYSMENU 0x00002000L
- #define MF_HELP 0x00004000L
- #if(WINVER >= 0x0400)
- #define MF_RIGHTJUSTIFY 0x00004000L
- #endif /* WINVER >= 0x0400 */
- #define MF_MOUSESELECT 0x00008000L
- #if(WINVER >= 0x0400)
- #define MF_END 0x00000080L /* Obsolete -- only used by old RES files */
- #endif /* WINVER >= 0x0400 */
- #if(WINVER >= 0x0400)
- #define MFT_STRING MF_STRING
- #define MFT_BITMAP MF_BITMAP
- #define MFT_MENUBARBREAK MF_MENUBARBREAK
- #define MFT_MENUBREAK MF_MENUBREAK
- #define MFT_OWNERDRAW MF_OWNERDRAW
- #define MFT_RADIOCHECK 0x00000200L
- #define MFT_SEPARATOR MF_SEPARATOR
- #define MFT_RIGHTORDER 0x00002000L
- #define MFT_RIGHTJUSTIFY MF_RIGHTJUSTIFY
- /* Menu flags for Add/Check/EnableMenuItem() */
- #define MFS_GRAYED 0x00000003L
- #define MFS_DISABLED MFS_GRAYED
- #define MFS_CHECKED MF_CHECKED
- #define MFS_HILITE MF_HILITE
- #define MFS_ENABLED MF_ENABLED
- #define MFS_UNCHECKED MF_UNCHECKED
- #define MFS_UNHILITE MF_UNHILITE
- #define MFS_DEFAULT MF_DEFAULT
- #endif /* WINVER >= 0x0400 */
- #if(WINVER >= 0x0400)
- WINUSERAPI
- BOOL
- WINAPI
- CheckMenuRadioItem(
- IN HMENU,
- IN UINT,
- IN UINT,
- IN UINT,
- IN UINT);
- #endif /* WINVER >= 0x0400 */
- /*
- * Menu item resource format
- */
- typedef struct {
- WORD versionNumber;
- WORD offset;
- } MENUITEMTEMPLATEHEADER, *PMENUITEMTEMPLATEHEADER;
- typedef struct { // version 0
- WORD mtOption;
- WORD mtID;
- WCHAR mtString[1];
- } MENUITEMTEMPLATE, *PMENUITEMTEMPLATE;
- #define MF_END 0x00000080L
- #endif /* !NOMENUS */
- #ifndef NOSYSCOMMANDS
- /*
- * System Menu Command Values
- */
- #define SC_SIZE 0xF000
- #define SC_MOVE 0xF010
- #define SC_MINIMIZE 0xF020
- #define SC_MAXIMIZE 0xF030
- #define SC_NEXTWINDOW 0xF040
- #define SC_PREVWINDOW 0xF050
- #define SC_CLOSE 0xF060
- #define SC_VSCROLL 0xF070
- #define SC_HSCROLL 0xF080
- #define SC_MOUSEMENU 0xF090
- #define SC_KEYMENU 0xF100
- #define SC_ARRANGE 0xF110
- #define SC_RESTORE 0xF120
- #define SC_TASKLIST 0xF130
- #define SC_SCREENSAVE 0xF140
- #define SC_HOTKEY 0xF150
- #if(WINVER >= 0x0400)
- #define SC_DEFAULT 0xF160
- #define SC_MONITORPOWER 0xF170
- #define SC_CONTEXTHELP 0xF180
- #define SC_SEPARATOR 0xF00F
- #endif /* WINVER >= 0x0400 */
- /*
- * Obsolete names
- */
- #define SC_ICON SC_MINIMIZE
- #define SC_ZOOM SC_MAXIMIZE
- #endif /* !NOSYSCOMMANDS */
- /*
- * Resource Loading Routines
- */
- WINUSERAPI
- HBITMAP
- WINAPI
- LoadBitmapA(
- IN HINSTANCE hInstance,
- IN LPCSTR lpBitmapName);
- WINUSERAPI
- HBITMAP
- WINAPI
- LoadBitmapW(
- IN HINSTANCE hInstance,
- IN LPCWSTR lpBitmapName);
- #ifdef UNICODE
- #define LoadBitmap LoadBitmapW
- #else
- #define LoadBitmap LoadBitmapA
- #endif // !UNICODE
- WINUSERAPI
- HCURSOR
- WINAPI
- LoadCursorA(
- IN HINSTANCE hInstance,
- IN LPCSTR lpCursorName);
- WINUSERAPI
- HCURSOR
- WINAPI
- LoadCursorW(
- IN HINSTANCE hInstance,
- IN LPCWSTR lpCursorName);
- #ifdef UNICODE
- #define LoadCursor LoadCursorW
- #else
- #define LoadCursor LoadCursorA
- #endif // !UNICODE
- WINUSERAPI
- HCURSOR
- WINAPI
- LoadCursorFromFileA(
- IN LPCSTR lpFileName);
- WINUSERAPI
- HCURSOR
- WINAPI
- LoadCursorFromFileW(
- IN LPCWSTR lpFileName);
- #ifdef UNICODE
- #define LoadCursorFromFile LoadCursorFromFileW
- #else
- #define LoadCursorFromFile LoadCursorFromFileA
- #endif // !UNICODE
- WINUSERAPI
- HCURSOR
- WINAPI
- CreateCursor(
- IN HINSTANCE hInst,
- IN int xHotSpot,
- IN int yHotSpot,
- IN int nWidth,
- IN int nHeight,
- IN CONST VOID *pvANDPlane,
- IN CONST VOID *pvXORPlane);
- WINUSERAPI
- BOOL
- WINAPI
- DestroyCursor(
- IN HCURSOR hCursor);
- #ifndef _MAC
- #define CopyCursor(pcur) ((HCURSOR)CopyIcon((HICON)(pcur)))
- #else
- WINUSERAPI
- HCURSOR
- WINAPI
- CopyCursor(
- IN HCURSOR hCursor);
- #endif
- /*
- * Standard Cursor IDs
- */
- #define IDC_ARROW MAKEINTRESOURCE(32512)
- #define IDC_IBEAM MAKEINTRESOURCE(32513)
- #define IDC_WAIT MAKEINTRESOURCE(32514)
- #define IDC_CROSS MAKEINTRESOURCE(32515)
- #define IDC_UPARROW MAKEINTRESOURCE(32516)
- #define IDC_SIZE MAKEINTRESOURCE(32640) /* OBSOLETE: use IDC_SIZEALL */
- #define IDC_ICON MAKEINTRESOURCE(32641) /* OBSOLETE: use IDC_ARROW */
- #define IDC_SIZENWSE MAKEINTRESOURCE(32642)
- #define IDC_SIZENESW MAKEINTRESOURCE(32643)
- #define IDC_SIZEWE MAKEINTRESOURCE(32644)
- #define IDC_SIZENS MAKEINTRESOURCE(32645)
- #define IDC_SIZEALL MAKEINTRESOURCE(32646)
- #define IDC_NO MAKEINTRESOURCE(32648) /*not in win3.1 */
- #if(WINVER >= 0x0500)
- #define IDC_HAND MAKEINTRESOURCE(32649)
- #endif /* WINVER >= 0x0500 */
- #define IDC_APPSTARTING MAKEINTRESOURCE(32650) /*not in win3.1 */
- #if(WINVER >= 0x0400)
- #define IDC_HELP MAKEINTRESOURCE(32651)
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- BOOL
- WINAPI
- SetSystemCursor(
- IN HCURSOR hcur,
- IN DWORD id);
- typedef struct _ICONINFO {
- BOOL fIcon;
- DWORD xHotspot;
- DWORD yHotspot;
- HBITMAP hbmMask;
- HBITMAP hbmColor;
- } ICONINFO;
- typedef ICONINFO *PICONINFO;
- WINUSERAPI
- HICON
- WINAPI
- LoadIconA(
- IN HINSTANCE hInstance,
- IN LPCSTR lpIconName);
- WINUSERAPI
- HICON
- WINAPI
- LoadIconW(
- IN HINSTANCE hInstance,
- IN LPCWSTR lpIconName);
- #ifdef UNICODE
- #define LoadIcon LoadIconW
- #else
- #define LoadIcon LoadIconA
- #endif // !UNICODE
- WINUSERAPI
- HICON
- WINAPI
- CreateIcon(
- IN HINSTANCE hInstance,
- IN int nWidth,
- IN int nHeight,
- IN BYTE cPlanes,
- IN BYTE cBitsPixel,
- IN CONST BYTE *lpbANDbits,
- IN CONST BYTE *lpbXORbits);
- WINUSERAPI
- BOOL
- WINAPI
- DestroyIcon(
- IN HICON hIcon);
- WINUSERAPI
- int
- WINAPI
- LookupIconIdFromDirectory(
- IN PBYTE presbits,
- IN BOOL fIcon);
- #if(WINVER >= 0x0400)
- WINUSERAPI
- int
- WINAPI
- LookupIconIdFromDirectoryEx(
- IN PBYTE presbits,
- IN BOOL fIcon,
- IN int cxDesired,
- IN int cyDesired,
- IN UINT Flags);
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- HICON
- WINAPI
- CreateIconFromResource(
- IN PBYTE presbits,
- IN DWORD dwResSize,
- IN BOOL fIcon,
- IN DWORD dwVer);
- #if(WINVER >= 0x0400)
- WINUSERAPI
- HICON
- WINAPI
- CreateIconFromResourceEx(
- IN PBYTE presbits,
- IN DWORD dwResSize,
- IN BOOL fIcon,
- IN DWORD dwVer,
- IN int cxDesired,
- IN int cyDesired,
- IN UINT Flags);
- /* Icon/Cursor header */
- typedef struct tagCURSORSHAPE
- {
- int xHotSpot;
- int yHotSpot;
- int cx;
- int cy;
- int cbWidth;
- BYTE Planes;
- BYTE BitsPixel;
- } CURSORSHAPE, FAR *LPCURSORSHAPE;
- #endif /* WINVER >= 0x0400 */
- #define IMAGE_BITMAP 0
- #define IMAGE_ICON 1
- #define IMAGE_CURSOR 2
- #if(WINVER >= 0x0400)
- #define IMAGE_ENHMETAFILE 3
- #define LR_DEFAULTCOLOR 0x0000
- #define LR_MONOCHROME 0x0001
- #define LR_COLOR 0x0002
- #define LR_COPYRETURNORG 0x0004
- #define LR_COPYDELETEORG 0x0008
- #define LR_LOADFROMFILE 0x0010
- #define LR_LOADTRANSPARENT 0x0020
- #define LR_DEFAULTSIZE 0x0040
- #define LR_VGACOLOR 0x0080
- #define LR_LOADMAP3DCOLORS 0x1000
- #define LR_CREATEDIBSECTION 0x2000
- #define LR_COPYFROMRESOURCE 0x4000
- #define LR_SHARED 0x8000
- WINUSERAPI
- HANDLE
- WINAPI
- LoadImageA(
- IN HINSTANCE,
- IN LPCSTR,
- IN UINT,
- IN int,
- IN int,
- IN UINT);
- WINUSERAPI
- HANDLE
- WINAPI
- LoadImageW(
- IN HINSTANCE,
- IN LPCWSTR,
- IN UINT,
- IN int,
- IN int,
- IN UINT);
- #ifdef UNICODE
- #define LoadImage LoadImageW
- #else
- #define LoadImage LoadImageA
- #endif // !UNICODE
- WINUSERAPI
- HANDLE
- WINAPI
- CopyImage(
- IN HANDLE,
- IN UINT,
- IN int,
- IN int,
- IN UINT);
- #define DI_MASK 0x0001
- #define DI_IMAGE 0x0002
- #define DI_NORMAL 0x0003
- #define DI_COMPAT 0x0004
- #define DI_DEFAULTSIZE 0x0008
- #if(_WIN32_WINNT >= 0x0501)
- #define DI_NOMIRROR 0x0010
- #endif /* _WIN32_WINNT >= 0x0501 */
- WINUSERAPI BOOL WINAPI DrawIconEx( IN HDC hdc, IN int xLeft, IN int yTop,
- IN HICON hIcon, IN int cxWidth, IN int cyWidth,
- IN UINT istepIfAniCur, IN HBRUSH hbrFlickerFreeDraw, IN UINT diFlags);
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- HICON
- WINAPI
- CreateIconIndirect(
- IN PICONINFO piconinfo);
- WINUSERAPI
- HICON
- WINAPI
- CopyIcon(
- IN HICON hIcon);
- WINUSERAPI
- BOOL
- WINAPI
- GetIconInfo(
- IN HICON hIcon,
- OUT PICONINFO piconinfo);
- #if(WINVER >= 0x0400)
- #define RES_ICON 1
- #define RES_CURSOR 2
- #endif /* WINVER >= 0x0400 */
- #ifdef OEMRESOURCE
- /*
- * OEM Resource Ordinal Numbers
- */
- #define OBM_CLOSE 32754
- #define OBM_UPARROW 32753
- #define OBM_DNARROW 32752
- #define OBM_RGARROW 32751
- #define OBM_LFARROW 32750
- #define OBM_REDUCE 32749
- #define OBM_ZOOM 32748
- #define OBM_RESTORE 32747
- #define OBM_REDUCED 32746
- #define OBM_ZOOMD 32745
- #define OBM_RESTORED 32744
- #define OBM_UPARROWD 32743
- #define OBM_DNARROWD 32742
- #define OBM_RGARROWD 32741
- #define OBM_LFARROWD 32740
- #define OBM_MNARROW 32739
- #define OBM_COMBO 32738
- #define OBM_UPARROWI 32737
- #define OBM_DNARROWI 32736
- #define OBM_RGARROWI 32735
- #define OBM_LFARROWI 32734
- #define OBM_OLD_CLOSE 32767
- #define OBM_SIZE 32766
- #define OBM_OLD_UPARROW 32765
- #define OBM_OLD_DNARROW 32764
- #define OBM_OLD_RGARROW 32763
- #define OBM_OLD_LFARROW 32762
- #define OBM_BTSIZE 32761
- #define OBM_CHECK 32760
- #define OBM_CHECKBOXES 32759
- #define OBM_BTNCORNERS 32758
- #define OBM_OLD_REDUCE 32757
- #define OBM_OLD_ZOOM 32756
- #define OBM_OLD_RESTORE 32755
- #define OCR_NORMAL 32512
- #define OCR_IBEAM 32513
- #define OCR_WAIT 32514
- #define OCR_CROSS 32515
- #define OCR_UP 32516
- #define OCR_SIZE 32640 /* OBSOLETE: use OCR_SIZEALL */
- #define OCR_ICON 32641 /* OBSOLETE: use OCR_NORMAL */
- #define OCR_SIZENWSE 32642
- #define OCR_SIZENESW 32643
- #define OCR_SIZEWE 32644
- #define OCR_SIZENS 32645
- #define OCR_SIZEALL 32646
- #define OCR_ICOCUR 32647 /* OBSOLETE: use OIC_WINLOGO */
- #define OCR_NO 32648
- #if(WINVER >= 0x0500)
- #define OCR_HAND 32649
- #endif /* WINVER >= 0x0500 */
- #if(WINVER >= 0x0400)
- #define OCR_APPSTARTING 32650
- #endif /* WINVER >= 0x0400 */
- #define OIC_SAMPLE 32512
- #define OIC_HAND 32513
- #define OIC_QUES 32514
- #define OIC_BANG 32515
- #define OIC_NOTE 32516
- #if(WINVER >= 0x0400)
- #define OIC_WINLOGO 32517
- #define OIC_WARNING OIC_BANG
- #define OIC_ERROR OIC_HAND
- #define OIC_INFORMATION OIC_NOTE
- #endif /* WINVER >= 0x0400 */
- #endif /* OEMRESOURCE */
- #define ORD_LANGDRIVER 1 /* The ordinal number for the entry point of
- ** language drivers.
- */
- #ifndef NOICONS
- /*
- * Standard Icon IDs
- */
- #ifdef RC_INVOKED
- #define IDI_APPLICATION 32512
- #define IDI_HAND 32513
- #define IDI_QUESTION 32514
- #define IDI_EXCLAMATION 32515
- #define IDI_ASTERISK 32516
- #if(WINVER >= 0x0400)
- #define IDI_WINLOGO 32517
- #endif /* WINVER >= 0x0400 */
- #else
- #define IDI_APPLICATION MAKEINTRESOURCE(32512)
- #define IDI_HAND MAKEINTRESOURCE(32513)
- #define IDI_QUESTION MAKEINTRESOURCE(32514)
- #define IDI_EXCLAMATION MAKEINTRESOURCE(32515)
- #define IDI_ASTERISK MAKEINTRESOURCE(32516)
- #if(WINVER >= 0x0400)
- #define IDI_WINLOGO MAKEINTRESOURCE(32517)
- #endif /* WINVER >= 0x0400 */
- #endif /* RC_INVOKED */
- #if(WINVER >= 0x0400)
- #define IDI_WARNING IDI_EXCLAMATION
- #define IDI_ERROR IDI_HAND
- #define IDI_INFORMATION IDI_ASTERISK
- #endif /* WINVER >= 0x0400 */
- #endif /* !NOICONS */
- WINUSERAPI
- int
- WINAPI
- LoadStringA(
- IN HINSTANCE hInstance,
- IN UINT uID,
- OUT LPSTR lpBuffer,
- IN int nBufferMax);
- WINUSERAPI
- int
- WINAPI
- LoadStringW(
- IN HINSTANCE hInstance,
- IN UINT uID,
- OUT LPWSTR lpBuffer,
- IN int nBufferMax);
- #ifdef UNICODE
- #define LoadString LoadStringW
- #else
- #define LoadString LoadStringA
- #endif // !UNICODE
- /*
- * Dialog Box Command IDs
- */
- #define IDOK 1
- #define IDCANCEL 2
- #define IDABORT 3
- #define IDRETRY 4
- #define IDIGNORE 5
- #define IDYES 6
- #define IDNO 7
- #if(WINVER >= 0x0400)
- #define IDCLOSE 8
- #define IDHELP 9
- #endif /* WINVER >= 0x0400 */
- #if(WINVER >= 0x0500)
- #define IDTRYAGAIN 10
- #define IDCONTINUE 11
- #endif /* WINVER >= 0x0500 */
- #if(WINVER >= 0x0501)
- #ifndef IDTIMEOUT
- #define IDTIMEOUT 32000
- #endif
- #endif /* WINVER >= 0x0501 */
- #ifndef NOCTLMGR
- /*
- * Control Manager Structures and Definitions
- */
- #ifndef NOWINSTYLES
- /*
- * Edit Control Styles
- */
- #define ES_LEFT 0x0000L
- #define ES_CENTER 0x0001L
- #define ES_RIGHT 0x0002L
- #define ES_MULTILINE 0x0004L
- #define ES_UPPERCASE 0x0008L
- #define ES_LOWERCASE 0x0010L
- #define ES_PASSWORD 0x0020L
- #define ES_AUTOVSCROLL 0x0040L
- #define ES_AUTOHSCROLL 0x0080L
- #define ES_NOHIDESEL 0x0100L
- #define ES_OEMCONVERT 0x0400L
- #define ES_READONLY 0x0800L
- #define ES_WANTRETURN 0x1000L
- #if(WINVER >= 0x0400)
- #define ES_NUMBER 0x2000L
- #endif /* WINVER >= 0x0400 */
- #endif /* !NOWINSTYLES */
- /*
- * Edit Control Notification Codes
- */
- #define EN_SETFOCUS 0x0100
- #define EN_KILLFOCUS 0x0200
- #define EN_CHANGE 0x0300
- #define EN_UPDATE 0x0400
- #define EN_ERRSPACE 0x0500
- #define EN_MAXTEXT 0x0501
- #define EN_HSCROLL 0x0601
- #define EN_VSCROLL 0x0602
- #if(_WIN32_WINNT >= 0x0500)
- #define EN_ALIGN_LTR_EC 0x0700
- #define EN_ALIGN_RTL_EC 0x0701
- #endif /* _WIN32_WINNT >= 0x0500 */
- #if(WINVER >= 0x0400)
- /* Edit control EM_SETMARGIN parameters */
- #define EC_LEFTMARGIN 0x0001
- #define EC_RIGHTMARGIN 0x0002
- #define EC_USEFONTINFO 0xffff
- #endif /* WINVER >= 0x0400 */
- #if(WINVER >= 0x0500)
- /* wParam of EM_GET/SETIMESTATUS */
- #define EMSIS_COMPOSITIONSTRING 0x0001
- /* lParam for EMSIS_COMPOSITIONSTRING */
- #define EIMES_GETCOMPSTRATONCE 0x0001
- #define EIMES_CANCELCOMPSTRINFOCUS 0x0002
- #define EIMES_COMPLETECOMPSTRKILLFOCUS 0x0004
- #endif /* WINVER >= 0x0500 */
- #ifndef NOWINMESSAGES
- /*
- * Edit Control Messages
- */
- #define EM_GETSEL 0x00B0
- #define EM_SETSEL 0x00B1
- #define EM_GETRECT 0x00B2
- #define EM_SETRECT 0x00B3
- #define EM_SETRECTNP 0x00B4
- #define EM_SCROLL 0x00B5
- #define EM_LINESCROLL 0x00B6
- #define EM_SCROLLCARET 0x00B7
- #define EM_GETMODIFY 0x00B8
- #define EM_SETMODIFY 0x00B9
- #define EM_GETLINECOUNT 0x00BA
- #define EM_LINEINDEX 0x00BB
- #define EM_SETHANDLE 0x00BC
- #define EM_GETHANDLE 0x00BD
- #define EM_GETTHUMB 0x00BE
- #define EM_LINELENGTH 0x00C1
- #define EM_REPLACESEL 0x00C2
- #define EM_GETLINE 0x00C4
- #define EM_LIMITTEXT 0x00C5
- #define EM_CANUNDO 0x00C6
- #define EM_UNDO 0x00C7
- #define EM_FMTLINES 0x00C8
- #define EM_LINEFROMCHAR 0x00C9
- #define EM_SETTABSTOPS 0x00CB
- #define EM_SETPASSWORDCHAR 0x00CC
- #define EM_EMPTYUNDOBUFFER 0x00CD
- #define EM_GETFIRSTVISIBLELINE 0x00CE
- #define EM_SETREADONLY 0x00CF
- #define EM_SETWORDBREAKPROC 0x00D0
- #define EM_GETWORDBREAKPROC 0x00D1
- #define EM_GETPASSWORDCHAR 0x00D2
- #if(WINVER >= 0x0400)
- #define EM_SETMARGINS 0x00D3
- #define EM_GETMARGINS 0x00D4
- #define EM_SETLIMITTEXT EM_LIMITTEXT /* ;win40 Name change */
- #define EM_GETLIMITTEXT 0x00D5
- #define EM_POSFROMCHAR 0x00D6
- #define EM_CHARFROMPOS 0x00D7
- #endif /* WINVER >= 0x0400 */
- #if(WINVER >= 0x0500)
- #define EM_SETIMESTATUS 0x00D8
- #define EM_GETIMESTATUS 0x00D9
- #endif /* WINVER >= 0x0500 */
- #endif /* !NOWINMESSAGES */
- /*
- * EDITWORDBREAKPROC code values
- */
- #define WB_LEFT 0
- #define WB_RIGHT 1
- #define WB_ISDELIMITER 2
- /*
- * Button Control Styles
- */
- #define BS_PUSHBUTTON 0x00000000L
- #define BS_DEFPUSHBUTTON 0x00000001L
- #define BS_CHECKBOX 0x00000002L
- #define BS_AUTOCHECKBOX 0x00000003L
- #define BS_RADIOBUTTON 0x00000004L
- #define BS_3STATE 0x00000005L
- #define BS_AUTO3STATE 0x00000006L
- #define BS_GROUPBOX 0x00000007L
- #define BS_USERBUTTON 0x00000008L
- #define BS_AUTORADIOBUTTON 0x00000009L
- #define BS_OWNERDRAW 0x0000000BL
- #define BS_LEFTTEXT 0x00000020L
- #if(WINVER >= 0x0400)
- #define BS_TEXT 0x00000000L
- #define BS_ICON 0x00000040L
- #define BS_BITMAP 0x00000080L
- #define BS_LEFT 0x00000100L
- #define BS_RIGHT 0x00000200L
- #define BS_CENTER 0x00000300L
- #define BS_TOP 0x00000400L
- #define BS_BOTTOM 0x00000800L
- #define BS_VCENTER 0x00000C00L
- #define BS_PUSHLIKE 0x00001000L
- #define BS_MULTILINE 0x00002000L
- #define BS_NOTIFY 0x00004000L
- #define BS_FLAT 0x00008000L
- #define BS_RIGHTBUTTON BS_LEFTTEXT
- #endif /* WINVER >= 0x0400 */
- /*
- * User Button Notification Codes
- */
- #define BN_CLICKED 0
- #define BN_PAINT 1
- #define BN_HILITE 2
- #define BN_UNHILITE 3
- #define BN_DISABLE 4
- #define BN_DOUBLECLICKED 5
- #if(WINVER >= 0x0400)
- #define BN_PUSHED BN_HILITE
- #define BN_UNPUSHED BN_UNHILITE
- #define BN_DBLCLK BN_DOUBLECLICKED
- #define BN_SETFOCUS 6
- #define BN_KILLFOCUS 7
- #endif /* WINVER >= 0x0400 */
- /*
- * Button Control Messages
- */
- #define BM_GETCHECK 0x00F0
- #define BM_SETCHECK 0x00F1
- #define BM_GETSTATE 0x00F2
- #define BM_SETSTATE 0x00F3
- #define BM_SETSTYLE 0x00F4
- #if(WINVER >= 0x0400)
- #define BM_CLICK 0x00F5
- #define BM_GETIMAGE 0x00F6
- #define BM_SETIMAGE 0x00F7
- #define BST_UNCHECKED 0x0000
- #define BST_CHECKED 0x0001
- #define BST_INDETERMINATE 0x0002
- #define BST_PUSHED 0x0004
- #define BST_FOCUS 0x0008
- #endif /* WINVER >= 0x0400 */
- /*
- * Static Control Constants
- */
- #define SS_LEFT 0x00000000L
- #define SS_CENTER 0x00000001L
- #define SS_RIGHT 0x00000002L
- #define SS_ICON 0x00000003L
- #define SS_BLACKRECT 0x00000004L
- #define SS_GRAYRECT 0x00000005L
- #define SS_WHITERECT 0x00000006L
- #define SS_BLACKFRAME 0x00000007L
- #define SS_GRAYFRAME 0x00000008L
- #define SS_WHITEFRAME 0x00000009L
- #define SS_USERITEM 0x0000000AL
- #define SS_SIMPLE 0x0000000BL
- #define SS_LEFTNOWORDWRAP 0x0000000CL
- #if(WINVER >= 0x0400)
- #define SS_OWNERDRAW 0x0000000DL
- #define SS_BITMAP 0x0000000EL
- #define SS_ENHMETAFILE 0x0000000FL
- #define SS_ETCHEDHORZ 0x00000010L
- #define SS_ETCHEDVERT 0x00000011L
- #define SS_ETCHEDFRAME 0x00000012L
- #define SS_TYPEMASK 0x0000001FL
- #endif /* WINVER >= 0x0400 */
- #if(WINVER >= 0x0501)
- #define SS_REALSIZECONTROL 0x00000040L
- #endif /* WINVER >= 0x0501 */
- #define SS_NOPREFIX 0x00000080L /* Don't do "&" character translation */
- #if(WINVER >= 0x0400)
- #define SS_NOTIFY 0x00000100L
- #define SS_CENTERIMAGE 0x00000200L
- #define SS_RIGHTJUST 0x00000400L
- #define SS_REALSIZEIMAGE 0x00000800L
- #define SS_SUNKEN 0x00001000L
- #define SS_ENDELLIPSIS 0x00004000L
- #define SS_PATHELLIPSIS 0x00008000L
- #define SS_WORDELLIPSIS 0x0000C000L
- #define SS_ELLIPSISMASK 0x0000C000L
- #endif /* WINVER >= 0x0400 */
- #ifndef NOWINMESSAGES
- /*
- * Static Control Mesages
- */
- #define STM_SETICON 0x0170
- #define STM_GETICON 0x0171
- #if(WINVER >= 0x0400)
- #define STM_SETIMAGE 0x0172
- #define STM_GETIMAGE 0x0173
- #define STN_CLICKED 0
- #define STN_DBLCLK 1
- #define STN_ENABLE 2
- #define STN_DISABLE 3
- #endif /* WINVER >= 0x0400 */
- #define STM_MSGMAX 0x0174
- #endif /* !NOWINMESSAGES */
- /*
- * Dialog window class
- */
- #define WC_DIALOG (MAKEINTATOM(0x8002))
- /*
- * Get/SetWindowWord/Long offsets for use with WC_DIALOG windows
- */
- #define DWL_MSGRESULT 0
- #define DWL_DLGPROC 4
- #define DWL_USER 8
- #ifdef _WIN64
- #undef DWL_MSGRESULT
- #undef DWL_DLGPROC
- #undef DWL_USER
- #endif /* _WIN64 */
- #define DWLP_MSGRESULT 0
- #define DWLP_DLGPROC DWLP_MSGRESULT + sizeof(LRESULT)
- #define DWLP_USER DWLP_DLGPROC + sizeof(DLGPROC)
- /*
- * Dialog Manager Routines
- */
- #ifndef NOMSG
- WINUSERAPI
- BOOL
- WINAPI
- IsDialogMessageA(
- IN HWND hDlg,
- IN LPMSG lpMsg);
- WINUSERAPI
- BOOL
- WINAPI
- IsDialogMessageW(
- IN HWND hDlg,
- IN LPMSG lpMsg);
- #ifdef UNICODE
- #define IsDialogMessage IsDialogMessageW
- #else
- #define IsDialogMessage IsDialogMessageA
- #endif // !UNICODE
- #endif /* !NOMSG */
- WINUSERAPI
- BOOL
- WINAPI
- MapDialogRect(
- IN HWND hDlg,
- IN OUT LPRECT lpRect);
- WINUSERAPI
- int
- WINAPI
- DlgDirListA(
- IN HWND hDlg,
- IN OUT LPSTR lpPathSpec,
- IN int nIDListBox,
- IN int nIDStaticPath,
- IN UINT uFileType);
- WINUSERAPI
- int
- WINAPI
- DlgDirListW(
- IN HWND hDlg,
- IN OUT LPWSTR lpPathSpec,
- IN int nIDListBox,
- IN int nIDStaticPath,
- IN UINT uFileType);
- #ifdef UNICODE
- #define DlgDirList DlgDirListW
- #else
- #define DlgDirList DlgDirListA
- #endif // !UNICODE
- /*
- * DlgDirList, DlgDirListComboBox flags values
- */
- #define DDL_READWRITE 0x0000
- #define DDL_READONLY 0x0001
- #define DDL_HIDDEN 0x0002
- #define DDL_SYSTEM 0x0004
- #define DDL_DIRECTORY 0x0010
- #define DDL_ARCHIVE 0x0020
- #define DDL_POSTMSGS 0x2000
- #define DDL_DRIVES 0x4000
- #define DDL_EXCLUSIVE 0x8000
- WINUSERAPI
- BOOL
- WINAPI
- DlgDirSelectExA(
- IN HWND hDlg,
- OUT LPSTR lpString,
- IN int nCount,
- IN int nIDListBox);
- WINUSERAPI
- BOOL
- WINAPI
- DlgDirSelectExW(
- IN HWND hDlg,
- OUT LPWSTR lpString,
- IN int nCount,
- IN int nIDListBox);
- #ifdef UNICODE
- #define DlgDirSelectEx DlgDirSelectExW
- #else
- #define DlgDirSelectEx DlgDirSelectExA
- #endif // !UNICODE
- WINUSERAPI
- int
- WINAPI
- DlgDirListComboBoxA(
- IN HWND hDlg,
- IN OUT LPSTR lpPathSpec,
- IN int nIDComboBox,
- IN int nIDStaticPath,
- IN UINT uFiletype);
- WINUSERAPI
- int
- WINAPI
- DlgDirListComboBoxW(
- IN HWND hDlg,
- IN OUT LPWSTR lpPathSpec,
- IN int nIDComboBox,
- IN int nIDStaticPath,
- IN UINT uFiletype);
- #ifdef UNICODE
- #define DlgDirListComboBox DlgDirListComboBoxW
- #else
- #define DlgDirListComboBox DlgDirListComboBoxA
- #endif // !UNICODE
- WINUSERAPI
- BOOL
- WINAPI
- DlgDirSelectComboBoxExA(
- IN HWND hDlg,
- OUT LPSTR lpString,
- IN int nCount,
- IN int nIDComboBox);
- WINUSERAPI
- BOOL
- WINAPI
- DlgDirSelectComboBoxExW(
- IN HWND hDlg,
- OUT LPWSTR lpString,
- IN int nCount,
- IN int nIDComboBox);
- #ifdef UNICODE
- #define DlgDirSelectComboBoxEx DlgDirSelectComboBoxExW
- #else
- #define DlgDirSelectComboBoxEx DlgDirSelectComboBoxExA
- #endif // !UNICODE
- /*
- * Dialog Styles
- */
- #define DS_ABSALIGN 0x01L
- #define DS_SYSMODAL 0x02L
- #define DS_LOCALEDIT 0x20L /* Edit items get Local storage. */
- #define DS_SETFONT 0x40L /* User specified font for Dlg controls */
- #define DS_MODALFRAME 0x80L /* Can be combined with WS_CAPTION */
- #define DS_NOIDLEMSG 0x100L /* WM_ENTERIDLE message will not be sent */
- #define DS_SETFOREGROUND 0x200L /* not in win3.1 */
- #if(WINVER >= 0x0400)
- #define DS_3DLOOK 0x0004L
- #define DS_FIXEDSYS 0x0008L
- #define DS_NOFAILCREATE 0x0010L
- #define DS_CONTROL 0x0400L
- #define DS_CENTER 0x0800L
- #define DS_CENTERMOUSE 0x1000L
- #define DS_CONTEXTHELP 0x2000L
- #define DS_SHELLFONT (DS_SETFONT | DS_FIXEDSYS)
- #endif /* WINVER >= 0x0400 */
- #define DM_GETDEFID (WM_USER+0)
- #define DM_SETDEFID (WM_USER+1)
- #if(WINVER >= 0x0400)
- #define DM_REPOSITION (WM_USER+2)
- #endif /* WINVER >= 0x0400 */
- /*
- * Returned in HIWORD() of DM_GETDEFID result if msg is supported
- */
- #define DC_HASDEFID 0x534B
- /*
- * Dialog Codes
- */
- #define DLGC_WANTARROWS 0x0001 /* Control wants arrow keys */
- #define DLGC_WANTTAB 0x0002 /* Control wants tab keys */
- #define DLGC_WANTALLKEYS 0x0004 /* Control wants all keys */
- #define DLGC_WANTMESSAGE 0x0004 /* Pass message to control */
- #define DLGC_HASSETSEL 0x0008 /* Understands EM_SETSEL message */
- #define DLGC_DEFPUSHBUTTON 0x0010 /* Default pushbutton */
- #define DLGC_UNDEFPUSHBUTTON 0x0020 /* Non-default pushbutton */
- #define DLGC_RADIOBUTTON 0x0040 /* Radio button */
- #define DLGC_WANTCHARS 0x0080 /* Want WM_CHAR messages */
- #define DLGC_STATIC 0x0100 /* Static item: don't include */
- #define DLGC_BUTTON 0x2000 /* Button item: can be checked */
- #define LB_CTLCODE 0L
- /*
- * Listbox Return Values
- */
- #define LB_OKAY 0
- #define LB_ERR (-1)
- #define LB_ERRSPACE (-2)
- /*
- ** The idStaticPath parameter to DlgDirList can have the following values
- ** ORed if the list box should show other details of the files along with
- ** the name of the files;
- */
- /* all other details also will be returned */
- /*
- * Listbox Notification Codes
- */
- #define LBN_ERRSPACE (-2)
- #define LBN_SELCHANGE 1
- #define LBN_DBLCLK 2
- #define LBN_SELCANCEL 3
- #define LBN_SETFOCUS 4
- #define LBN_KILLFOCUS 5
- #ifndef NOWINMESSAGES
- /*
- * Listbox messages
- */
- #define LB_ADDSTRING 0x0180
- #define LB_INSERTSTRING 0x0181
- #define LB_DELETESTRING 0x0182
- #define LB_SELITEMRANGEEX 0x0183
- #define LB_RESETCONTENT 0x0184
- #define LB_SETSEL 0x0185
- #define LB_SETCURSEL 0x0186
- #define LB_GETSEL 0x0187
- #define LB_GETCURSEL 0x0188
- #define LB_GETTEXT 0x0189
- #define LB_GETTEXTLEN 0x018A
- #define LB_GETCOUNT 0x018B
- #define LB_SELECTSTRING 0x018C
- #define LB_DIR 0x018D
- #define LB_GETTOPINDEX 0x018E
- #define LB_FINDSTRING 0x018F
- #define LB_GETSELCOUNT 0x0190
- #define LB_GETSELITEMS 0x0191
- #define LB_SETTABSTOPS 0x0192
- #define LB_GETHORIZONTALEXTENT 0x0193
- #define LB_SETHORIZONTALEXTENT 0x0194
- #define LB_SETCOLUMNWIDTH 0x0195
- #define LB_ADDFILE 0x0196
- #define LB_SETTOPINDEX 0x0197
- #define LB_GETITEMRECT 0x0198
- #define LB_GETITEMDATA 0x0199
- #define LB_SETITEMDATA 0x019A
- #define LB_SELITEMRANGE 0x019B
- #define LB_SETANCHORINDEX 0x019C
- #define LB_GETANCHORINDEX 0x019D
- #define LB_SETCARETINDEX 0x019E
- #define LB_GETCARETINDEX 0x019F
- #define LB_SETITEMHEIGHT 0x01A0
- #define LB_GETITEMHEIGHT 0x01A1
- #define LB_FINDSTRINGEXACT 0x01A2
- #define LB_SETLOCALE 0x01A5
- #define LB_GETLOCALE 0x01A6
- #define LB_SETCOUNT 0x01A7
- #if(WINVER >= 0x0400)
- #define LB_INITSTORAGE 0x01A8
- #define LB_ITEMFROMPOINT 0x01A9
- #endif /* WINVER >= 0x0400 */
- #if(_WIN32_WCE >= 0x0400)
- #define LB_MULTIPLEADDSTRING 0x01B1
- #endif
- #if(_WIN32_WINNT >= 0x0501)
- #define LB_GETLISTBOXINFO 0x01B2
- #endif /* _WIN32_WINNT >= 0x0501 */
- #if(_WIN32_WINNT >= 0x0501)
- #define LB_MSGMAX 0x01B3
- #elif(_WIN32_WCE >= 0x0400)
- #define LB_MSGMAX 0x01B1
- #elif(WINVER >= 0x0400)
- #define LB_MSGMAX 0x01B0
- #else
- #define LB_MSGMAX 0x01A8
- #endif
- #endif /* !NOWINMESSAGES */
- #ifndef NOWINSTYLES
- /*
- * Listbox Styles
- */
- #define LBS_NOTIFY 0x0001L
- #define LBS_SORT 0x0002L
- #define LBS_NOREDRAW 0x0004L
- #define LBS_MULTIPLESEL 0x0008L
- #define LBS_OWNERDRAWFIXED 0x0010L
- #define LBS_OWNERDRAWVARIABLE 0x0020L
- #define LBS_HASSTRINGS 0x0040L
- #define LBS_USETABSTOPS 0x0080L
- #define LBS_NOINTEGRALHEIGHT 0x0100L
- #define LBS_MULTICOLUMN 0x0200L
- #define LBS_WANTKEYBOARDINPUT 0x0400L
- #define LBS_EXTENDEDSEL 0x0800L
- #define LBS_DISABLENOSCROLL 0x1000L
- #define LBS_NODATA 0x2000L
- #if(WINVER >= 0x0400)
- #define LBS_NOSEL 0x4000L
- #endif /* WINVER >= 0x0400 */
- #define LBS_STANDARD (LBS_NOTIFY | LBS_SORT | WS_VSCROLL | WS_BORDER)
- #endif /* !NOWINSTYLES */
- /*
- * Combo Box return Values
- */
- #define CB_OKAY 0
- #define CB_ERR (-1)
- #define CB_ERRSPACE (-2)
- /*
- * Combo Box Notification Codes
- */
- #define CBN_ERRSPACE (-1)
- #define CBN_SELCHANGE 1
- #define CBN_DBLCLK 2
- #define CBN_SETFOCUS 3
- #define CBN_KILLFOCUS 4
- #define CBN_EDITCHANGE 5
- #define CBN_EDITUPDATE 6
- #define CBN_DROPDOWN 7
- #define CBN_CLOSEUP 8
- #define CBN_SELENDOK 9
- #define CBN_SELENDCANCEL 10
- #ifndef NOWINSTYLES
- /*
- * Combo Box styles
- */
- #define CBS_SIMPLE 0x0001L
- #define CBS_DROPDOWN 0x0002L
- #define CBS_DROPDOWNLIST 0x0003L
- #define CBS_OWNERDRAWFIXED 0x0010L
- #define CBS_OWNERDRAWVARIABLE 0x0020L
- #define CBS_AUTOHSCROLL 0x0040L
- #define CBS_OEMCONVERT 0x0080L
- #define CBS_SORT 0x0100L
- #define CBS_HASSTRINGS 0x0200L
- #define CBS_NOINTEGRALHEIGHT 0x0400L
- #define CBS_DISABLENOSCROLL 0x0800L
- #if(WINVER >= 0x0400)
- #define CBS_UPPERCASE 0x2000L
- #define CBS_LOWERCASE 0x4000L
- #endif /* WINVER >= 0x0400 */
- #endif /* !NOWINSTYLES */
- /*
- * Combo Box messages
- */
- #ifndef NOWINMESSAGES
- #define CB_GETEDITSEL 0x0140
- #define CB_LIMITTEXT 0x0141
- #define CB_SETEDITSEL 0x0142
- #define CB_ADDSTRING 0x0143
- #define CB_DELETESTRING 0x0144
- #define CB_DIR 0x0145
- #define CB_GETCOUNT 0x0146
- #define CB_GETCURSEL 0x0147
- #define CB_GETLBTEXT 0x0148
- #define CB_GETLBTEXTLEN 0x0149
- #define CB_INSERTSTRING 0x014A
- #define CB_RESETCONTENT 0x014B
- #define CB_FINDSTRING 0x014C
- #define CB_SELECTSTRING 0x014D
- #define CB_SETCURSEL 0x014E
- #define CB_SHOWDROPDOWN 0x014F
- #define CB_GETITEMDATA 0x0150
- #define CB_SETITEMDATA 0x0151
- #define CB_GETDROPPEDCONTROLRECT 0x0152
- #define CB_SETITEMHEIGHT 0x0153
- #define CB_GETITEMHEIGHT 0x0154
- #define CB_SETEXTENDEDUI 0x0155
- #define CB_GETEXTENDEDUI 0x0156
- #define CB_GETDROPPEDSTATE 0x0157
- #define CB_FINDSTRINGEXACT 0x0158
- #define CB_SETLOCALE 0x0159
- #define CB_GETLOCALE 0x015A
- #if(WINVER >= 0x0400)
- #define CB_GETTOPINDEX 0x015b
- #define CB_SETTOPINDEX 0x015c
- #define CB_GETHORIZONTALEXTENT 0x015d
- #define CB_SETHORIZONTALEXTENT 0x015e
- #define CB_GETDROPPEDWIDTH 0x015f
- #define CB_SETDROPPEDWIDTH 0x0160
- #define CB_INITSTORAGE 0x0161
- #if(_WIN32_WCE >= 0x0400)
- #define CB_MULTIPLEADDSTRING 0x0163
- #endif
- #endif /* WINVER >= 0x0400 */
- #if(_WIN32_WINNT >= 0x0501)
- #define CB_GETCOMBOBOXINFO 0x0164
- #endif /* _WIN32_WINNT >= 0x0501 */
- #if(_WIN32_WINNT >= 0x0501)
- #define CB_MSGMAX 0x0165
- #elif(_WIN32_WCE >= 0x0400)
- #define CB_MSGMAX 0x0163
- #elif(WINVER >= 0x0400)
- #define CB_MSGMAX 0x0162
- #else
- #define CB_MSGMAX 0x015B
- #endif
- #endif /* !NOWINMESSAGES */
- #ifndef NOWINSTYLES
- /*
- * Scroll Bar Styles
- */
- #define SBS_HORZ 0x0000L
- #define SBS_VERT 0x0001L
- #define SBS_TOPALIGN 0x0002L
- #define SBS_LEFTALIGN 0x0002L
- #define SBS_BOTTOMALIGN 0x0004L
- #define SBS_RIGHTALIGN 0x0004L
- #define SBS_SIZEBOXTOPLEFTALIGN 0x0002L
- #define SBS_SIZEBOXBOTTOMRIGHTALIGN 0x0004L
- #define SBS_SIZEBOX 0x0008L
- #if(WINVER >= 0x0400)
- #define SBS_SIZEGRIP 0x0010L
- #endif /* WINVER >= 0x0400 */
- #endif /* !NOWINSTYLES */
- /*
- * Scroll bar messages
- */
- #ifndef NOWINMESSAGES
- #define SBM_SETPOS 0x00E0 /*not in win3.1 */
- #define SBM_GETPOS 0x00E1 /*not in win3.1 */
- #define SBM_SETRANGE 0x00E2 /*not in win3.1 */
- #define SBM_SETRANGEREDRAW 0x00E6 /*not in win3.1 */
- #define SBM_GETRANGE 0x00E3 /*not in win3.1 */
- #define SBM_ENABLE_ARROWS 0x00E4 /*not in win3.1 */
- #if(WINVER >= 0x0400)
- #define SBM_SETSCROLLINFO 0x00E9
- #define SBM_GETSCROLLINFO 0x00EA
- #endif /* WINVER >= 0x0400 */
- #if(_WIN32_WINNT >= 0x0501)
- #define SBM_GETSCROLLBARINFO 0x00EB
- #endif /* _WIN32_WINNT >= 0x0501 */
- #if(WINVER >= 0x0400)
- #define SIF_RANGE 0x0001
- #define SIF_PAGE 0x0002
- #define SIF_POS 0x0004
- #define SIF_DISABLENOSCROLL 0x0008
- #define SIF_TRACKPOS 0x0010
- #define SIF_ALL (SIF_RANGE | SIF_PAGE | SIF_POS | SIF_TRACKPOS)
- typedef struct tagSCROLLINFO
- {
- UINT cbSize;
- UINT fMask;
- int nMin;
- int nMax;
- UINT nPage;
- int nPos;
- int nTrackPos;
- } SCROLLINFO, FAR *LPSCROLLINFO;
- typedef SCROLLINFO CONST FAR *LPCSCROLLINFO;
- WINUSERAPI int WINAPI SetScrollInfo(IN HWND, IN int, IN LPCSCROLLINFO, IN BOOL);
- WINUSERAPI BOOL WINAPI GetScrollInfo(IN HWND, IN int, IN OUT LPSCROLLINFO);
- #endif /* WINVER >= 0x0400 */
- #endif /* !NOWINMESSAGES */
- #endif /* !NOCTLMGR */
- #ifndef NOMDI
- /*
- * MDI client style bits
- */
- #define MDIS_ALLCHILDSTYLES 0x0001
- /*
- * wParam Flags for WM_MDITILE and WM_MDICASCADE messages.
- */
- #define MDITILE_VERTICAL 0x0000 /*not in win3.1 */
- #define MDITILE_HORIZONTAL 0x0001 /*not in win3.1 */
- #define MDITILE_SKIPDISABLED 0x0002 /*not in win3.1 */
- #if(_WIN32_WINNT >= 0x0500)
- #define MDITILE_ZORDER 0x0004
- #endif /* _WIN32_WINNT >= 0x0500 */
- typedef struct tagMDICREATESTRUCTA {
- LPCSTR szClass;
- LPCSTR szTitle;
- HANDLE hOwner;
- int x;
- int y;
- int cx;
- int cy;
- DWORD style;
- LPARAM lParam; /* app-defined stuff */
- } MDICREATESTRUCTA, *LPMDICREATESTRUCTA;
- typedef struct tagMDICREATESTRUCTW {
- LPCWSTR szClass;
- LPCWSTR szTitle;
- HANDLE hOwner;
- int x;
- int y;
- int cx;
- int cy;
- DWORD style;
- LPARAM lParam; /* app-defined stuff */
- } MDICREATESTRUCTW, *LPMDICREATESTRUCTW;
- #ifdef UNICODE
- typedef MDICREATESTRUCTW MDICREATESTRUCT;
- typedef LPMDICREATESTRUCTW LPMDICREATESTRUCT;
- #else
- typedef MDICREATESTRUCTA MDICREATESTRUCT;
- typedef LPMDICREATESTRUCTA LPMDICREATESTRUCT;
- #endif // UNICODE
- typedef struct tagCLIENTCREATESTRUCT {
- HANDLE hWindowMenu;
- UINT idFirstChild;
- } CLIENTCREATESTRUCT, *LPCLIENTCREATESTRUCT;
- WINUSERAPI
- LRESULT
- WINAPI
- DefFrameProcA(
- IN HWND hWnd,
- IN HWND hWndMDIClient,
- IN UINT uMsg,
- IN WPARAM wParam,
- IN LPARAM lParam);
- WINUSERAPI
- LRESULT
- WINAPI
- DefFrameProcW(
- IN HWND hWnd,
- IN HWND hWndMDIClient,
- IN UINT uMsg,
- IN WPARAM wParam,
- IN LPARAM lParam);
- #ifdef UNICODE
- #define DefFrameProc DefFrameProcW
- #else
- #define DefFrameProc DefFrameProcA
- #endif // !UNICODE
- WINUSERAPI
- #ifndef _MAC
- LRESULT
- WINAPI
- #else
- LRESULT
- CALLBACK
- #endif
- DefMDIChildProcA(
- IN HWND hWnd,
- IN UINT uMsg,
- IN WPARAM wParam,
- IN LPARAM lParam);
- WINUSERAPI
- #ifndef _MAC
- LRESULT
- WINAPI
- #else
- LRESULT
- CALLBACK
- #endif
- DefMDIChildProcW(
- IN HWND hWnd,
- IN UINT uMsg,
- IN WPARAM wParam,
- IN LPARAM lParam);
- #ifdef UNICODE
- #define DefMDIChildProc DefMDIChildProcW
- #else
- #define DefMDIChildProc DefMDIChildProcA
- #endif // !UNICODE
- #ifndef NOMSG
- WINUSERAPI
- BOOL
- WINAPI
- TranslateMDISysAccel(
- IN HWND hWndClient,
- IN LPMSG lpMsg);
- #endif /* !NOMSG */
- WINUSERAPI
- UINT
- WINAPI
- ArrangeIconicWindows(
- IN HWND hWnd);
- WINUSERAPI
- HWND
- WINAPI
- CreateMDIWindowA(
- IN LPCSTR lpClassName,
- IN LPCSTR lpWindowName,
- IN DWORD dwStyle,
- IN int X,
- IN int Y,
- IN int nWidth,
- IN int nHeight,
- IN HWND hWndParent,
- IN HINSTANCE hInstance,
- IN LPARAM lParam
- );
- WINUSERAPI
- HWND
- WINAPI
- CreateMDIWindowW(
- IN LPCWSTR lpClassName,
- IN LPCWSTR lpWindowName,
- IN DWORD dwStyle,
- IN int X,
- IN int Y,
- IN int nWidth,
- IN int nHeight,
- IN HWND hWndParent,
- IN HINSTANCE hInstance,
- IN LPARAM lParam
- );
- #ifdef UNICODE
- #define CreateMDIWindow CreateMDIWindowW
- #else
- #define CreateMDIWindow CreateMDIWindowA
- #endif // !UNICODE
- #if(WINVER >= 0x0400)
- WINUSERAPI WORD WINAPI TileWindows( IN HWND hwndParent, IN UINT wHow, IN CONST RECT * lpRect, IN UINT cKids, IN const HWND FAR * lpKids);
- WINUSERAPI WORD WINAPI CascadeWindows( IN HWND hwndParent, IN UINT wHow, IN CONST RECT * lpRect, IN UINT cKids, IN const HWND FAR * lpKids);
- #endif /* WINVER >= 0x0400 */
- #endif /* !NOMDI */
- #endif /* !NOUSER */
- /****** Help support ********************************************************/
- #ifndef NOHELP
- typedef DWORD HELPPOLY;
- typedef struct tagMULTIKEYHELPA {
- #ifndef _MAC
- DWORD mkSize;
- #else
- WORD mkSize;
- #endif
- CHAR mkKeylist;
- CHAR szKeyphrase[1];
- } MULTIKEYHELPA, *PMULTIKEYHELPA, *LPMULTIKEYHELPA;
- typedef struct tagMULTIKEYHELPW {
- #ifndef _MAC
- DWORD mkSize;
- #else
- WORD mkSize;
- #endif
- WCHAR mkKeylist;
- WCHAR szKeyphrase[1];
- } MULTIKEYHELPW, *PMULTIKEYHELPW, *LPMULTIKEYHELPW;
- #ifdef UNICODE
- typedef MULTIKEYHELPW MULTIKEYHELP;
- typedef PMULTIKEYHELPW PMULTIKEYHELP;
- typedef LPMULTIKEYHELPW LPMULTIKEYHELP;
- #else
- typedef MULTIKEYHELPA MULTIKEYHELP;
- typedef PMULTIKEYHELPA PMULTIKEYHELP;
- typedef LPMULTIKEYHELPA LPMULTIKEYHELP;
- #endif // UNICODE
- typedef struct tagHELPWININFOA {
- int wStructSize;
- int x;
- int y;
- int dx;
- int dy;
- int wMax;
- CHAR rgchMember[2];
- } HELPWININFOA, *PHELPWININFOA, *LPHELPWININFOA;
- typedef struct tagHELPWININFOW {
- int wStructSize;
- int x;
- int y;
- int dx;
- int dy;
- int wMax;
- WCHAR rgchMember[2];
- } HELPWININFOW, *PHELPWININFOW, *LPHELPWININFOW;
- #ifdef UNICODE
- typedef HELPWININFOW HELPWININFO;
- typedef PHELPWININFOW PHELPWININFO;
- typedef LPHELPWININFOW LPHELPWININFO;
- #else
- typedef HELPWININFOA HELPWININFO;
- typedef PHELPWININFOA PHELPWININFO;
- typedef LPHELPWININFOA LPHELPWININFO;
- #endif // UNICODE
- /*
- * Commands to pass to WinHelp()
- */
- #define HELP_CONTEXT 0x0001L /* Display topic in ulTopic */
- #define HELP_QUIT 0x0002L /* Terminate help */
- #define HELP_INDEX 0x0003L /* Display index */
- #define HELP_CONTENTS 0x0003L
- #define HELP_HELPONHELP 0x0004L /* Display help on using help */
- #define HELP_SETINDEX 0x0005L /* Set current Index for multi index help */
- #define HELP_SETCONTENTS 0x0005L
- #define HELP_CONTEXTPOPUP 0x0008L
- #define HELP_FORCEFILE 0x0009L
- #define HELP_KEY 0x0101L /* Display topic for keyword in offabData */
- #define HELP_COMMAND 0x0102L
- #define HELP_PARTIALKEY 0x0105L
- #define HELP_MULTIKEY 0x0201L
- #define HELP_SETWINPOS 0x0203L
- #if(WINVER >= 0x0400)
- #define HELP_CONTEXTMENU 0x000a
- #define HELP_FINDER 0x000b
- #define HELP_WM_HELP 0x000c
- #define HELP_SETPOPUP_POS 0x000d
- #define HELP_TCARD 0x8000
- #define HELP_TCARD_DATA 0x0010
- #define HELP_TCARD_OTHER_CALLER 0x0011
- // These are in winhelp.h in Win95.
- #define IDH_NO_HELP 28440
- #define IDH_MISSING_CONTEXT 28441 // Control doesn't have matching help context
- #define IDH_GENERIC_HELP_BUTTON 28442 // Property sheet help button
- #define IDH_OK 28443
- #define IDH_CANCEL 28444
- #define IDH_HELP 28445
- #endif /* WINVER >= 0x0400 */
- WINUSERAPI
- BOOL
- WINAPI
- WinHelpA(
- IN HWND hWndMain,
- IN LPCSTR lpszHelp,
- IN UINT uCommand,
- IN ULONG_PTR dwData
- );
- WINUSERAPI
- BOOL
- WINAPI
- WinHelpW(
- IN HWND hWndMain,
- IN LPCWSTR lpszHelp,
- IN UINT uCommand,
- IN ULONG_PTR dwData
- );
- #ifdef UNICODE
- #define WinHelp WinHelpW
- #else
- #define WinHelp WinHelpA
- #endif // !UNICODE
- #endif /* !NOHELP */
- #if(WINVER >= 0x0500)
- #define GR_GDIOBJECTS 0 /* Count of GDI objects */
- #define GR_USEROBJECTS 1 /* Count of USER objects */
- WINUSERAPI
- DWORD
- WINAPI
- GetGuiResources(
- IN HANDLE hProcess,
- IN DWORD uiFlags);
- #endif /* WINVER >= 0x0500 */
- #ifndef NOSYSPARAMSINFO
- /*
- * Parameter for SystemParametersInfo()
- */
- #define SPI_GETBEEP 0x0001
- #define SPI_SETBEEP 0x0002
- #define SPI_GETMOUSE 0x0003
- #define SPI_SETMOUSE 0x0004
- #define SPI_GETBORDER 0x0005
- #define SPI_SETBORDER 0x0006
- #define SPI_GETKEYBOARDSPEED 0x000A
- #define SPI_SETKEYBOARDSPEED 0x000B
- #define SPI_LANGDRIVER 0x000C
- #define SPI_ICONHORIZONTALSPACING 0x000D
- #define SPI_GETSCREENSAVETIMEOUT 0x000E
- #define SPI_SETSCREENSAVETIMEOUT 0x000F
- #define SPI_GETSCREENSAVEACTIVE 0x0010
- #define SPI_SETSCREENSAVEACTIVE 0x0011
- #define SPI_GETGRIDGRANULARITY 0x0012
- #define SPI_SETGRIDGRANULARITY 0x0013
- #define SPI_SETDESKWALLPAPER 0x0014
- #define SPI_SETDESKPATTERN 0x0015
- #define SPI_GETKEYBOARDDELAY 0x0016
- #define SPI_SETKEYBOARDDELAY 0x0017
- #define SPI_ICONVERTICALSPACING 0x0018
- #define SPI_GETICONTITLEWRAP 0x0019
- #define SPI_SETICONTITLEWRAP 0x001A
- #define SPI_GETMENUDROPALIGNMENT 0x001B
- #define SPI_SETMENUDROPALIGNMENT 0x001C
- #define SPI_SETDOUBLECLKWIDTH 0x001D
- #define SPI_SETDOUBLECLKHEIGHT 0x001E
- #define SPI_GETICONTITLELOGFONT 0x001F
- #define SPI_SETDOUBLECLICKTIME 0x0020
- #define SPI_SETMOUSEBUTTONSWAP 0x0021
- #define SPI_SETICONTITLELOGFONT 0x0022
- #define SPI_GETFASTTASKSWITCH 0x0023
- #define SPI_SETFASTTASKSWITCH 0x0024
- #if(WINVER >= 0x0400)
- #define SPI_SETDRAGFULLWINDOWS 0x0025
- #define SPI_GETDRAGFULLWINDOWS 0x0026
- #define SPI_GETNONCLIENTMETRICS 0x0029
- #define SPI_SETNONCLIENTMETRICS 0x002A
- #define SPI_GETMINIMIZEDMETRICS 0x002B
- #define SPI_SETMINIMIZEDMETRICS 0x002C
- #define SPI_GETICONMETRICS 0x002D
- #define SPI_SETICONMETRICS 0x002E
- #define SPI_SETWORKAREA 0x002F
- #define SPI_GETWORKAREA 0x0030
- #define SPI_SETPENWINDOWS 0x0031
- #define SPI_GETHIGHCONTRAST 0x0042
- #define SPI_SETHIGHCONTRAST 0x0043
- #define SPI_GETKEYBOARDPREF 0x0044
- #define SPI_SETKEYBOARDPREF 0x0045
- #define SPI_GETSCREENREADER 0x0046
- #define SPI_SETSCREENREADER 0x0047
- #define SPI_GETANIMATION 0x0048
- #define SPI_SETANIMATION 0x0049
- #define SPI_GETFONTSMOOTHING 0x004A
- #define SPI_SETFONTSMOOTHING 0x004B
- #define SPI_SETDRAGWIDTH 0x004C
- #define SPI_SETDRAGHEIGHT 0x004D
- #define SPI_SETHANDHELD 0x004E
- #define SPI_GETLOWPOWERTIMEOUT 0x004F
- #define SPI_GETPOWEROFFTIMEOUT 0x0050
- #define SPI_SETLOWPOWERTIMEOUT 0x0051
- #define SPI_SETPOWEROFFTIMEOUT 0x0052
- #define SPI_GETLOWPOWERACTIVE 0x0053
- #define SPI_GETPOWEROFFACTIVE 0x0054
- #define SPI_SETLOWPOWERACTIVE 0x0055
- #define SPI_SETPOWEROFFACTIVE 0x0056
- #define SPI_SETCURSORS 0x0057
- #define SPI_SETICONS 0x0058
- #define SPI_GETDEFAULTINPUTLANG 0x0059
- #define SPI_SETDEFAULTINPUTLANG 0x005A
- #define SPI_SETLANGTOGGLE 0x005B
- #define SPI_GETWINDOWSEXTENSION 0x005C
- #define SPI_SETMOUSETRAILS 0x005D
- #define SPI_GETMOUSETRAILS 0x005E
- #define SPI_SETSCREENSAVERRUNNING 0x0061
- #define SPI_SCREENSAVERRUNNING SPI_SETSCREENSAVERRUNNING
- #endif /* WINVER >= 0x0400 */
- #define SPI_GETFILTERKEYS 0x0032
- #define SPI_SETFILTERKEYS 0x0033
- #define SPI_GETTOGGLEKEYS 0x0034
- #define SPI_SETTOGGLEKEYS 0x0035
- #define SPI_GETMOUSEKEYS 0x0036
- #define SPI_SETMOUSEKEYS 0x0037
- #define SPI_GETSHOWSOUNDS 0x0038
- #define SPI_SETSHOWSOUNDS 0x0039
- #define SPI_GETSTICKYKEYS 0x003A
- #define SPI_SETSTICKYKEYS 0x003B
- #define SPI_GETACCESSTIMEOUT 0x003C
- #define SPI_SETACCESSTIMEOUT 0x003D
- #if(WINVER >= 0x0400)
- #define SPI_GETSERIALKEYS 0x003E
- #define SPI_SETSERIALKEYS 0x003F
- #endif /* WINVER >= 0x0400 */
- #define SPI_GETSOUNDSENTRY 0x0040
- #define SPI_SETSOUNDSENTRY 0x0041
- #if(_WIN32_WINNT >= 0x0400)
- #define SPI_GETSNAPTODEFBUTTON 0x005F
- #define SPI_SETSNAPTODEFBUTTON 0x0060
- #endif /* _WIN32_WINNT >= 0x0400 */
- #if (_WIN32_WINNT >= 0x0400) || (_WIN32_WINDOWS > 0x0400)
- #define SPI_GETMOUSEHOVERWIDTH 0x0062
- #define SPI_SETMOUSEHOVERWIDTH 0x0063
- #define SPI_GETMOUSEHOVERHEIGHT 0x0064
- #define SPI_SETMOUSEHOVERHEIGHT 0x0065
- #define SPI_GETMOUSEHOVERTIME 0x0066
- #define SPI_SETMOUSEHOVERTIME 0x0067
- #define SPI_GETWHEELSCROLLLINES 0x0068
- #define SPI_SETWHEELSCROLLLINES 0x0069
- #define SPI_GETMENUSHOWDELAY 0x006A
- #define SPI_SETMENUSHOWDELAY 0x006B
- #define SPI_GETSHOWIMEUI 0x006E
- #define SPI_SETSHOWIMEUI 0x006F
- #endif
- #if(WINVER >= 0x0500)
- #define SPI_GETMOUSESPEED 0x0070
- #define SPI_SETMOUSESPEED 0x0071
- #define SPI_GETSCREENSAVERRUNNING 0x0072
- #define SPI_GETDESKWALLPAPER 0x0073
- #endif /* WINVER >= 0x0500 */
- #if(WINVER >= 0x0500)
- #define SPI_GETACTIVEWINDOWTRACKING 0x1000
- #define SPI_SETACTIVEWINDOWTRACKING 0x1001
- #define SPI_GETMENUANIMATION 0x1002
- #define SPI_SETMENUANIMATION 0x1003
- #define SPI_GETCOMBOBOXANIMATION 0x1004
- #define SPI_SETCOMBOBOXANIMATION 0x1005
- #define SPI_GETLISTBOXSMOOTHSCROLLING 0x1006
- #define SPI_SETLISTBOXSMOOTHSCROLLING 0x1007
- #define SPI_GETGRADIENTCAPTIONS 0x1008
- #define SPI_SETGRADIENTCAPTIONS 0x1009
- #define SPI_GETKEYBOARDCUES 0x100A
- #define SPI_SETKEYBOARDCUES 0x100B
- #define SPI_GETMENUUNDERLINES SPI_GETKEYBOARDCUES
- #define SPI_SETMENUUNDERLINES SPI_SETKEYBOARDCUES
- #define SPI_GETACTIVEWNDTRKZORDER 0x100C
- #define SPI_SETACTIVEWNDTRKZORDER 0x100D
- #define SPI_GETHOTTRACKING 0x100E
- #define SPI_SETHOTTRACKING 0x100F
- #define SPI_GETMENUFADE 0x1012
- #define SPI_SETMENUFADE 0x1013
- #define SPI_GETSELECTIONFADE 0x1014
- #define SPI_SETSELECTIONFADE 0x1015
- #define SPI_GETTOOLTIPANIMATION 0x1016
- #define SPI_SETTOOLTIPANIMATION 0x1017
- #define SPI_GETTOOLTIPFADE 0x1018
- #define SPI_SETTOOLTIPFADE 0x1019
- #define SPI_GETCURSORSHADOW 0x101A
- #define SPI_SETCURSORSHADOW 0x101B
- #if(_WIN32_WINNT >= 0x0501)
- #define SPI_GETMOUSESONAR 0x101C
- #define SPI_SETMOUSESONAR 0x101D
- #define SPI_GETMOUSECLICKLOCK 0x101E
- #define SPI_SETMOUSECLICKLOCK 0x101F
- #define SPI_GETMOUSEVANISH 0x1020
- #define SPI_SETMOUSEVANISH 0x1021
- #define SPI_GETFLATMENU 0x1022
- #define SPI_SETFLATMENU 0x1023
- #define SPI_GETDROPSHADOW 0x1024
- #define SPI_SETDROPSHADOW 0x1025
- #endif /* _WIN32_WINNT >= 0x0501 */
- #define SPI_GETUIEFFECTS 0x103E
- #define SPI_SETUIEFFECTS 0x103F
- #define SPI_GETFOREGROUNDLOCKTIMEOUT 0x2000
- #define SPI_SETFOREGROUNDLOCKTIMEOUT 0x2001
- #define SPI_GETACTIVEWNDTRKTIMEOUT 0x2002
- #define SPI_SETACTIVEWNDTRKTIMEOUT 0x2003
- #define SPI_GETFOREGROUNDFLASHCOUNT 0x2004
- #define SPI_SETFOREGROUNDFLASHCOUNT 0x2005
- #define SPI_GETCARETWIDTH 0x2006
- #define SPI_SETCARETWIDTH 0x2007
- #if(_WIN32_WINNT >= 0x0501)
- #define SPI_GETMOUSECLICKLOCKTIME 0x2008
- #define SPI_SETMOUSECLICKLOCKTIME 0x2009
- #define SPI_GETFONTSMOOTHINGTYPE 0x200A
- #define SPI_SETFONTSMOOTHINGTYPE 0x200B
- /* constants for SPI_GETFONTSMOOTHINGTYPE and SPI_SETFONTSMOOTHINGTYPE: */
- #define FE_FONTSMOOTHINGSTANDARD 0x0001
- #define FE_FONTSMOOTHINGCLEARTYPE 0x0002
- #define FE_FONTSMOOTHINGDOCKING 0x8000
- #define SPI_GETFONTSMOOTHINGCONTRAST 0x200C
- #define SPI_SETFONTSMOOTHINGCONTRAST 0x200D
- #define SPI_GETFOCUSBORDERWIDTH 0x200E
- #define SPI_SETFOCUSBORDERWIDTH 0x200F
- #define SPI_GETFOCUSBORDERHEIGHT 0x2010
- #define SPI_SETFOCUSBORDERHEIGHT 0x2011
- #endif /* _WIN32_WINNT >= 0x0501 */
- #endif /* WINVER >= 0x0500 */
- /*
- * Flags
- */
- #define SPIF_UPDATEINIFILE 0x0001
- #define SPIF_SENDWININICHANGE 0x0002
- #define SPIF_SENDCHANGE SPIF_SENDWININICHANGE
- #define METRICS_USEDEFAULT -1
- #ifdef _WINGDI_
- #ifndef NOGDI
- typedef struct tagNONCLIENTMETRICSA
- {
- UINT cbSize;
- int iBorderWidth;
- int iScrollWidth;
- int iScrollHeight;
- int iCaptionWidth;
- int iCaptionHeight;
- LOGFONTA lfCaptionFont;
- int iSmCaptionWidth;
- int iSmCaptionHeight;
- LOGFONTA lfSmCaptionFont;
- int iMenuWidth;
- int iMenuHeight;
- LOGFONTA lfMenuFont;
- LOGFONTA lfStatusFont;
- LOGFONTA lfMessageFont;
- } NONCLIENTMETRICSA, *PNONCLIENTMETRICSA, FAR* LPNONCLIENTMETRICSA;
- typedef struct tagNONCLIENTMETRICSW
- {
- UINT cbSize;
- int iBorderWidth;
- int iScrollWidth;
- int iScrollHeight;
- int iCaptionWidth;
- int iCaptionHeight;
- LOGFONTW lfCaptionFont;
- int iSmCaptionWidth;
- int iSmCaptionHeight;
- LOGFONTW lfSmCaptionFont;
- int iMenuWidth;
- int iMenuHeight;
- LOGFONTW lfMenuFont;
- LOGFONTW lfStatusFont;
- LOGFONTW lfMessageFont;
- } NONCLIENTMETRICSW, *PNONCLIENTMETRICSW, FAR* LPNONCLIENTMETRICSW;
- #ifdef UNICODE
- typedef NONCLIENTMETRICSW NONCLIENTMETRICS;
- typedef PNONCLIENTMETRICSW PNONCLIENTMETRICS;
- typedef LPNONCLIENTMETRICSW LPNONCLIENTMETRICS;
- #else
- typedef NONCLIENTMETRICSA NONCLIENTMETRICS;
- typedef PNONCLIENTMETRICSA PNONCLIENTMETRICS;
- typedef LPNONCLIENTMETRICSA LPNONCLIENTMETRICS;
- #endif // UNICODE
- #endif /* NOGDI */
- #endif /* _WINGDI_ */
- #define ARW_BOTTOMLEFT 0x0000L
- #define ARW_BOTTOMRIGHT 0x0001L
- #define ARW_TOPLEFT 0x0002L
- #define ARW_TOPRIGHT 0x0003L
- #define ARW_STARTMASK 0x0003L
- #define ARW_STARTRIGHT 0x0001L
- #define ARW_STARTTOP 0x0002L
- #define ARW_LEFT 0x0000L
- #define ARW_RIGHT 0x0000L
- #define ARW_UP 0x0004L
- #define ARW_DOWN 0x0004L
- #define ARW_HIDE 0x0008L
- typedef struct tagMINIMIZEDMETRICS
- {
- UINT cbSize;
- int iWidth;
- int iHorzGap;
- int iVertGap;
- int iArrange;
- } MINIMIZEDMETRICS, *PMINIMIZEDMETRICS, *LPMINIMIZEDMETRICS;
- #ifdef _WINGDI_
- #ifndef NOGDI
- typedef struct tagICONMETRICSA
- {
- UINT cbSize;
- int iHorzSpacing;
- int iVertSpacing;
- int iTitleWrap;
- LOGFONTA lfFont;
- } ICONMETRICSA, *PICONMETRICSA, *LPICONMETRICSA;
- typedef struct tagICONMETRICSW
- {
- UINT cbSize;
- int iHorzSpacing;
- int iVertSpacing;
- int iTitleWrap;
- LOGFONTW lfFont;
- } ICONMETRICSW, *PICONMETRICSW, *LPICONMETRICSW;
- #ifdef UNICODE
- typedef ICONMETRICSW ICONMETRICS;
- typedef PICONMETRICSW PICONMETRICS;
- typedef LPICONMETRICSW LPICONMETRICS;
- #else
- typedef ICONMETRICSA ICONMETRICS;
- typedef PICONMETRICSA PICONMETRICS;
- typedef LPICONMETRICSA LPICONMETRICS;
- #endif // UNICODE
- #endif /* NOGDI */
- #endif /* _WINGDI_ */
- typedef struct tagANIMATIONINFO
- {
- UINT cbSize;
- int iMinAnimate;
- } ANIMATIONINFO, *LPANIMATIONINFO;
- typedef struct tagSERIALKEYSA
- {
- UINT cbSize;
- DWORD dwFlags;
- LPSTR lpszActivePort;
- LPSTR lpszPort;
- UINT iBaudRate;
- UINT iPortState;
- UINT iActive;
- } SERIALKEYSA, *LPSERIALKEYSA;
- typedef struct tagSERIALKEYSW
- {
- UINT cbSize;
- DWORD dwFlags;
- LPWSTR lpszActivePort;
- LPWSTR lpszPort;
- UINT iBaudRate;
- UINT iPortState;
- UINT iActive;
- } SERIALKEYSW, *LPSERIALKEYSW;
- #ifdef UNICODE
- typedef SERIALKEYSW SERIALKEYS;
- typedef LPSERIALKEYSW LPSERIALKEYS;
- #else
- typedef SERIALKEYSA SERIALKEYS;
- typedef LPSERIALKEYSA LPSERIALKEYS;
- #endif // UNICODE
- /* flags for SERIALKEYS dwFlags field */
- #define SERKF_SERIALKEYSON 0x00000001
- #define SERKF_AVAILABLE 0x00000002
- #define SERKF_INDICATOR 0x00000004
- typedef struct tagHIGHCONTRASTA
- {
- UINT cbSize;
- DWORD dwFlags;
- LPSTR lpszDefaultScheme;
- } HIGHCONTRASTA, *LPHIGHCONTRASTA;
- typedef struct tagHIGHCONTRASTW
- {
- UINT cbSize;
- DWORD dwFlags;
- LPWSTR lpszDefaultScheme;
- } HIGHCONTRASTW, *LPHIGHCONTRASTW;
- #ifdef UNICODE
- typedef HIGHCONTRASTW HIGHCONTRAST;
- typedef LPHIGHCONTRASTW LPHIGHCONTRAST;
- #else
- typedef HIGHCONTRASTA HIGHCONTRAST;
- typedef LPHIGHCONTRASTA LPHIGHCONTRAST;
- #endif // UNICODE
- /* flags for HIGHCONTRAST dwFlags field */
- #define HCF_HIGHCONTRASTON 0x00000001
- #define HCF_AVAILABLE 0x00000002
- #define HCF_HOTKEYACTIVE 0x00000004
- #define HCF_CONFIRMHOTKEY 0x00000008
- #define HCF_HOTKEYSOUND 0x00000010
- #define HCF_INDICATOR 0x00000020
- #define HCF_HOTKEYAVAILABLE 0x00000040
- /* Flags for ChangeDisplaySettings */
- #define CDS_UPDATEREGISTRY 0x00000001
- #define CDS_TEST 0x00000002
- #define CDS_FULLSCREEN 0x00000004
- #define CDS_GLOBAL 0x00000008
- #define CDS_SET_PRIMARY 0x00000010
- #define CDS_VIDEOPARAMETERS 0x00000020
- #define CDS_RESET 0x40000000
- #define CDS_NORESET 0x10000000
- #include <tvout.h>
- /* Return values for ChangeDisplaySettings */
- #define DISP_CHANGE_SUCCESSFUL 0
- #define DISP_CHANGE_RESTART 1
- #define DISP_CHANGE_FAILED -1
- #define DISP_CHANGE_BADMODE -2
- #define DISP_CHANGE_NOTUPDATED -3
- #define DISP_CHANGE_BADFLAGS -4
- #define DISP_CHANGE_BADPARAM -5
- #if(_WIN32_WINNT >= 0x0501)
- #define DISP_CHANGE_BADDUALVIEW -6
- #endif /* _WIN32_WINNT >= 0x0501 */
- #ifdef _WINGDI_
- #ifndef NOGDI
- WINUSERAPI
- LONG
- WINAPI
- ChangeDisplaySettingsA(
- IN LPDEVMODEA lpDevMode,
- IN DWORD dwFlags);
- WINUSERAPI
- LONG
- WINAPI
- ChangeDisplaySettingsW(
- IN LPDEVMODEW lpDevMode,
- IN DWORD dwFlags);
- #ifdef UNICODE
- #define ChangeDisplaySettings ChangeDisplaySettingsW
- #else
- #define ChangeDisplaySettings ChangeDisplaySettingsA
- #endif // !UNICODE
- WINUSERAPI
- LONG
- WINAPI
- ChangeDisplaySettingsExA(
- IN LPCSTR lpszDeviceName,
- IN LPDEVMODEA lpDevMode,
- IN HWND hwnd,
- IN DWORD dwflags,
- IN LPVOID lParam);
- WINUSERAPI
- LONG
- WINAPI
- ChangeDisplaySettingsExW(
- IN LPCWSTR lpszDeviceName,
- IN LPDEVMODEW lpDevMode,
- IN HWND hwnd,
- IN DWORD dwflags,
- IN LPVOID lParam);
- #ifdef UNICODE
- #define ChangeDisplaySettingsEx ChangeDisplaySettingsExW
- #else
- #define ChangeDisplaySettingsEx ChangeDisplaySettingsExA
- #endif // !UNICODE
- #define ENUM_CURRENT_SETTINGS ((DWORD)-1)
- #define ENUM_REGISTRY_SETTINGS ((DWORD)-2)
- WINUSERAPI
- BOOL
- WINAPI
- EnumDisplaySettingsA(
- IN LPCSTR lpszDeviceName,
- IN DWORD iModeNum,
- OUT LPDEVMODEA lpDevMode);
- WINUSERAPI
- BOOL
- WINAPI
- EnumDisplaySettingsW(
- IN LPCWSTR lpszDeviceName,
- IN DWORD iModeNum,
- OUT LPDEVMODEW lpDevMode);
- #ifdef UNICODE
- #define EnumDisplaySettings EnumDisplaySettingsW
- #else
- #define EnumDisplaySettings EnumDisplaySettingsA
- #endif // !UNICODE
- #if(WINVER >= 0x0500)
- WINUSERAPI
- BOOL
- WINAPI
- EnumDisplaySettingsExA(
- IN LPCSTR lpszDeviceName,
- IN DWORD iModeNum,
- OUT LPDEVMODEA lpDevMode,
- IN DWORD dwFlags);
- WINUSERAPI
- BOOL
- WINAPI
- EnumDisplaySettingsExW(
- IN LPCWSTR lpszDeviceName,
- IN DWORD iModeNum,
- OUT LPDEVMODEW lpDevMode,
- IN DWORD dwFlags);
- #ifdef UNICODE
- #define EnumDisplaySettingsEx EnumDisplaySettingsExW
- #else
- #define EnumDisplaySettingsEx EnumDisplaySettingsExA
- #endif // !UNICODE
- /* Flags for EnumDisplaySettingsEx */
- #define EDS_RAWMODE 0x00000002
- WINUSERAPI
- BOOL
- WINAPI
- EnumDisplayDevicesA(
- IN LPCSTR lpDevice,
- IN DWORD iDevNum,
- OUT PDISPLAY_DEVICEA lpDisplayDevice,
- IN DWORD dwFlags);
- WINUSERAPI
- BOOL
- WINAPI
- EnumDisplayDevicesW(
- IN LPCWSTR lpDevice,
- IN DWORD iDevNum,
- OUT PDISPLAY_DEVICEW lpDisplayDevice,
- IN DWORD dwFlags);
- #ifdef UNICODE
- #define EnumDisplayDevices EnumDisplayDevicesW
- #else
- #define EnumDisplayDevices EnumDisplayDevicesA
- #endif // !UNICODE
- #endif /* WINVER >= 0x0500 */
- #endif /* NOGDI */
- #endif /* _WINGDI_ */
- WINUSERAPI
- BOOL
- WINAPI
- SystemParametersInfoA(
- IN UINT uiAction,
- IN UINT uiParam,
- IN OUT PVOID pvParam,
- IN UINT fWinIni);
- WINUSERAPI
- BOOL
- WINAPI
- SystemParametersInfoW(
- IN UINT uiAction,
- IN UINT uiParam,
- IN OUT PVOID pvParam,
- IN UINT fWinIni);
- #ifdef UNICODE
- #define SystemParametersInfo SystemParametersInfoW
- #else
- #define SystemParametersInfo SystemParametersInfoA
- #endif // !UNICODE
- #endif /* !NOSYSPARAMSINFO */
- /*
- * Accessibility support
- */
- typedef struct tagFILTERKEYS
- {
- UINT cbSize;
- DWORD dwFlags;
- DWORD iWaitMSec; // Acceptance Delay
- DWORD iDelayMSec; // Delay Until Repeat
- DWORD iRepeatMSec; // Repeat Rate
- DWORD iBounceMSec; // Debounce Time
- } FILTERKEYS, *LPFILTERKEYS;
- /*
- * FILTERKEYS dwFlags field
- */
- #define FKF_FILTERKEYSON 0x00000001
- #define FKF_AVAILABLE 0x00000002
- #define FKF_HOTKEYACTIVE 0x00000004
- #define FKF_CONFIRMHOTKEY 0x00000008
- #define FKF_HOTKEYSOUND 0x00000010
- #define FKF_INDICATOR 0x00000020
- #define FKF_CLICKON 0x00000040
- typedef struct tagSTICKYKEYS
- {
- UINT cbSize;
- DWORD dwFlags;
- } STICKYKEYS, *LPSTICKYKEYS;
- /*
- * STICKYKEYS dwFlags field
- */
- #define SKF_STICKYKEYSON 0x00000001
- #define SKF_AVAILABLE 0x00000002
- #define SKF_HOTKEYACTIVE 0x00000004
- #define SKF_CONFIRMHOTKEY 0x00000008
- #define SKF_HOTKEYSOUND 0x00000010
- #define SKF_INDICATOR 0x00000020
- #define SKF_AUDIBLEFEEDBACK 0x00000040
- #define SKF_TRISTATE 0x00000080
- #define SKF_TWOKEYSOFF 0x00000100
- #if(_WIN32_WINNT >= 0x0500)
- #define SKF_LALTLATCHED 0x10000000
- #define SKF_LCTLLATCHED 0x04000000
- #define SKF_LSHIFTLATCHED 0x01000000
- #define SKF_RALTLATCHED 0x20000000
- #define SKF_RCTLLATCHED 0x08000000
- #define SKF_RSHIFTLATCHED 0x02000000
- #define SKF_LWINLATCHED 0x40000000
- #define SKF_RWINLATCHED 0x80000000
- #define SKF_LALTLOCKED 0x00100000
- #define SKF_LCTLLOCKED 0x00040000
- #define SKF_LSHIFTLOCKED 0x00010000
- #define SKF_RALTLOCKED 0x00200000
- #define SKF_RCTLLOCKED 0x00080000
- #define SKF_RSHIFTLOCKED 0x00020000
- #define SKF_LWINLOCKED 0x00400000
- #define SKF_RWINLOCKED 0x00800000
- #endif /* _WIN32_WINNT >= 0x0500 */
- typedef struct tagMOUSEKEYS
- {
- UINT cbSize;
- DWORD dwFlags;
- DWORD iMaxSpeed;
- DWORD iTimeToMaxSpeed;
- DWORD iCtrlSpeed;
- DWORD dwReserved1;
- DWORD dwReserved2;
- } MOUSEKEYS, *LPMOUSEKEYS;
- /*
- * MOUSEKEYS dwFlags field
- */
- #define MKF_MOUSEKEYSON 0x00000001
- #define MKF_AVAILABLE 0x00000002
- #define MKF_HOTKEYACTIVE 0x00000004
- #define MKF_CONFIRMHOTKEY 0x00000008
- #define MKF_HOTKEYSOUND 0x00000010
- #define MKF_INDICATOR 0x00000020
- #define MKF_MODIFIERS 0x00000040
- #define MKF_REPLACENUMBERS 0x00000080
- #if(_WIN32_WINNT >= 0x0500)
- #define MKF_LEFTBUTTONSEL 0x10000000
- #define MKF_RIGHTBUTTONSEL 0x20000000
- #define MKF_LEFTBUTTONDOWN 0x01000000
- #define MKF_RIGHTBUTTONDOWN 0x02000000
- #define MKF_MOUSEMODE 0x80000000
- #endif /* _WIN32_WINNT >= 0x0500 */
- typedef struct tagACCESSTIMEOUT
- {
- UINT cbSize;
- DWORD dwFlags;
- DWORD iTimeOutMSec;
- } ACCESSTIMEOUT, *LPACCESSTIMEOUT;
- /*
- * ACCESSTIMEOUT dwFlags field
- */
- #define ATF_TIMEOUTON 0x00000001
- #define ATF_ONOFFFEEDBACK 0x00000002
- /* values for SOUNDSENTRY iFSGrafEffect field */
- #define SSGF_NONE 0
- #define SSGF_DISPLAY 3
- /* values for SOUNDSENTRY iFSTextEffect field */
- #define SSTF_NONE 0
- #define SSTF_CHARS 1
- #define SSTF_BORDER 2
- #define SSTF_DISPLAY 3
- /* values for SOUNDSENTRY iWindowsEffect field */
- #define SSWF_NONE 0
- #define SSWF_TITLE 1
- #define SSWF_WINDOW 2
- #define SSWF_DISPLAY 3
- #define SSWF_CUSTOM 4
- typedef struct tagSOUNDSENTRYA
- {
- UINT cbSize;
- DWORD dwFlags;
- DWORD iFSTextEffect;
- DWORD iFSTextEffectMSec;
- DWORD iFSTextEffectColorBits;
- DWORD iFSGrafEffect;
- DWORD iFSGrafEffectMSec;
- DWORD iFSGrafEffectColor;
- DWORD iWindowsEffect;
- DWORD iWindowsEffectMSec;
- LPSTR lpszWindowsEffectDLL;
- DWORD iWindowsEffectOrdinal;
- } SOUNDSENTRYA, *LPSOUNDSENTRYA;
- typedef struct tagSOUNDSENTRYW
- {
- UINT cbSize;
- DWORD dwFlags;
- DWORD iFSTextEffect;
- DWORD iFSTextEffectMSec;
- DWORD iFSTextEffectColorBits;
- DWORD iFSGrafEffect;
- DWORD iFSGrafEffectMSec;
- DWORD iFSGrafEffectColor;
- DWORD iWindowsEffect;
- DWORD iWindowsEffectMSec;
- LPWSTR lpszWindowsEffectDLL;
- DWORD iWindowsEffectOrdinal;
- } SOUNDSENTRYW, *LPSOUNDSENTRYW;
- #ifdef UNICODE
- typedef SOUNDSENTRYW SOUNDSENTRY;
- typedef LPSOUNDSENTRYW LPSOUNDSENTRY;
- #else
- typedef SOUNDSENTRYA SOUNDSENTRY;
- typedef LPSOUNDSENTRYA LPSOUNDSENTRY;
- #endif // UNICODE
- /*
- * SOUNDSENTRY dwFlags field
- */
- #define SSF_SOUNDSENTRYON 0x00000001
- #define SSF_AVAILABLE 0x00000002
- #define SSF_INDICATOR 0x00000004
- typedef struct tagTOGGLEKEYS
- {
- UINT cbSize;
- DWORD dwFlags;
- } TOGGLEKEYS, *LPTOGGLEKEYS;
- /*
- * TOGGLEKEYS dwFlags field
- */
- #define TKF_TOGGLEKEYSON 0x00000001
- #define TKF_AVAILABLE 0x00000002
- #define TKF_HOTKEYACTIVE 0x00000004
- #define TKF_CONFIRMHOTKEY 0x00000008
- #define TKF_HOTKEYSOUND 0x00000010
- #define TKF_INDICATOR 0x00000020
- /*
- * Set debug level
- */
- WINUSERAPI
- VOID
- WINAPI
- SetDebugErrorLevel(
- IN DWORD dwLevel
- );
- /*
- * SetLastErrorEx() types.
- */
- #define SLE_ERROR 0x00000001
- #define SLE_MINORERROR 0x00000002
- #define SLE_WARNING 0x00000003
- WINUSERAPI
- VOID
- WINAPI
- SetLastErrorEx(
- IN DWORD dwErrCode,
- IN DWORD dwType
- );
- #if(WINVER >= 0x0500)
- /*
- * Multimonitor API.
- */
- #define MONITOR_DEFAULTTONULL 0x00000000
- #define MONITOR_DEFAULTTOPRIMARY 0x00000001
- #define MONITOR_DEFAULTTONEAREST 0x00000002
- WINUSERAPI
- HMONITOR
- WINAPI
- MonitorFromPoint(
- IN POINT pt,
- IN DWORD dwFlags);
- WINUSERAPI
- HMONITOR
- WINAPI
- MonitorFromRect(
- IN LPCRECT lprc,
- IN DWORD dwFlags);
- WINUSERAPI
- HMONITOR
- WINAPI
- MonitorFromWindow( IN HWND hwnd, IN DWORD dwFlags);
- #define MONITORINFOF_PRIMARY 0x00000001
- #ifndef CCHDEVICENAME
- #define CCHDEVICENAME 32
- #endif
- typedef struct tagMONITORINFO
- {
- DWORD cbSize;
- RECT rcMonitor;
- RECT rcWork;
- DWORD dwFlags;
- } MONITORINFO, *LPMONITORINFO;
- #ifdef __cplusplus
- typedef struct tagMONITORINFOEXA : public tagMONITORINFO
- {
- CHAR szDevice[CCHDEVICENAME];
- } MONITORINFOEXA, *LPMONITORINFOEXA;
- typedef struct tagMONITORINFOEXW : public tagMONITORINFO
- {
- WCHAR szDevice[CCHDEVICENAME];
- } MONITORINFOEXW, *LPMONITORINFOEXW;
- #ifdef UNICODE
- typedef MONITORINFOEXW MONITORINFOEX;
- typedef LPMONITORINFOEXW LPMONITORINFOEX;
- #else
- typedef MONITORINFOEXA MONITORINFOEX;
- typedef LPMONITORINFOEXA LPMONITORINFOEX;
- #endif // UNICODE
- #else // ndef __cplusplus
- typedef struct tagMONITORINFOEXA
- {
- MONITORINFO;
- CHAR szDevice[CCHDEVICENAME];
- } MONITORINFOEXA, *LPMONITORINFOEXA;
- typedef struct tagMONITORINFOEXW
- {
- MONITORINFO;
- WCHAR szDevice[CCHDEVICENAME];
- } MONITORINFOEXW, *LPMONITORINFOEXW;
- #ifdef UNICODE
- typedef MONITORINFOEXW MONITORINFOEX;
- typedef LPMONITORINFOEXW LPMONITORINFOEX;
- #else
- typedef MONITORINFOEXA MONITORINFOEX;
- typedef LPMONITORINFOEXA LPMONITORINFOEX;
- #endif // UNICODE
- #endif
- WINUSERAPI BOOL WINAPI GetMonitorInfoA( IN HMONITOR hMonitor, OUT LPMONITORINFO lpmi);
- WINUSERAPI BOOL WINAPI GetMonitorInfoW( IN HMONITOR hMonitor, OUT LPMONITORINFO lpmi);
- #ifdef UNICODE
- #define GetMonitorInfo GetMonitorInfoW
- #else
- #define GetMonitorInfo GetMonitorInfoA
- #endif // !UNICODE
- typedef BOOL (CALLBACK* MONITORENUMPROC)(HMONITOR, HDC, LPRECT, LPARAM);
- WINUSERAPI
- BOOL
- WINAPI
- EnumDisplayMonitors(
- IN HDC hdc,
- IN LPCRECT lprcClip,
- IN MONITORENUMPROC lpfnEnum,
- IN LPARAM dwData);
- #ifndef NOWINABLE
- /*
- * WinEvents - Active Accessibility hooks
- */
- WINUSERAPI
- VOID
- WINAPI
- NotifyWinEvent(
- IN DWORD event,
- IN HWND hwnd,
- IN LONG idObject,
- IN LONG idChild);
- typedef VOID (CALLBACK* WINEVENTPROC)(
- HWINEVENTHOOK hWinEventHook,
- DWORD event,
- HWND hwnd,
- LONG idObject,
- LONG idChild,
- DWORD idEventThread,
- DWORD dwmsEventTime);
- WINUSERAPI
- HWINEVENTHOOK
- WINAPI
- SetWinEventHook(
- IN DWORD eventMin,
- IN DWORD eventMax,
- IN HMODULE hmodWinEventProc,
- IN WINEVENTPROC pfnWinEventProc,
- IN DWORD idProcess,
- IN DWORD idThread,
- IN DWORD dwFlags);
- #if(_WIN32_WINNT >= 0x0501)
- WINUSERAPI
- BOOL
- WINAPI
- IsWinEventHookInstalled(
- IN DWORD event);
- #endif /* _WIN32_WINNT >= 0x0501 */
- /*
- * dwFlags for SetWinEventHook
- */
- #define WINEVENT_OUTOFCONTEXT 0x0000 // Events are ASYNC
- #define WINEVENT_SKIPOWNTHREAD 0x0001 // Don't call back for events on installer's thread
- #define WINEVENT_SKIPOWNPROCESS 0x0002 // Don't call back for events on installer's process
- #define WINEVENT_INCONTEXT 0x0004 // Events are SYNC, this causes your dll to be injected into every process
- WINUSERAPI
- BOOL
- WINAPI
- UnhookWinEvent(
- IN HWINEVENTHOOK hWinEventHook);
- /*
- * idObject values for WinEventProc and NotifyWinEvent
- */
- /*
- * hwnd + idObject can be used with OLEACC.DLL's OleGetObjectFromWindow()
- * to get an interface pointer to the container. indexChild is the item
- * within the container in question. Setup a VARIANT with vt VT_I4 and
- * lVal the indexChild and pass that in to all methods. Then you
- * are raring to go.
- */
- /*
- * Common object IDs (cookies, only for sending WM_GETOBJECT to get at the
- * thing in question). Positive IDs are reserved for apps (app specific),
- * negative IDs are system things and are global, 0 means "just little old
- * me".
- */
- #define CHILDID_SELF 0
- #define INDEXID_OBJECT 0
- #define INDEXID_CONTAINER 0
- /*
- * Reserved IDs for system objects
- */
- #define OBJID_WINDOW ((LONG)0x00000000)
- #define OBJID_SYSMENU ((LONG)0xFFFFFFFF)
- #define OBJID_TITLEBAR ((LONG)0xFFFFFFFE)
- #define OBJID_MENU ((LONG)0xFFFFFFFD)
- #define OBJID_CLIENT ((LONG)0xFFFFFFFC)
- #define OBJID_VSCROLL ((LONG)0xFFFFFFFB)
- #define OBJID_HSCROLL ((LONG)0xFFFFFFFA)
- #define OBJID_SIZEGRIP ((LONG)0xFFFFFFF9)
- #define OBJID_CARET ((LONG)0xFFFFFFF8)
- #define OBJID_CURSOR ((LONG)0xFFFFFFF7)
- #define OBJID_ALERT ((LONG)0xFFFFFFF6)
- #define OBJID_SOUND ((LONG)0xFFFFFFF5)
- #define OBJID_QUERYCLASSNAMEIDX ((LONG)0xFFFFFFF4)
- #define OBJID_NATIVEOM ((LONG)0xFFFFFFF0)
- /*
- * EVENT DEFINITION
- */
- #define EVENT_MIN 0x00000001
- #define EVENT_MAX 0x7FFFFFFF
- /*
- * EVENT_SYSTEM_SOUND
- * Sent when a sound is played. Currently nothing is generating this, we
- * this event when a system sound (for menus, etc) is played. Apps
- * generate this, if accessible, when a private sound is played. For
- * example, if Mail plays a "New Mail" sound.
- *
- * System Sounds:
- * (Generated by PlaySoundEvent in USER itself)
- * hwnd is NULL
- * idObject is OBJID_SOUND
- * idChild is sound child ID if one
- * App Sounds:
- * (PlaySoundEvent won't generate notification; up to app)
- * hwnd + idObject gets interface pointer to Sound object
- * idChild identifies the sound in question
- * are going to be cleaning up the SOUNDSENTRY feature in the control panel
- * and will use this at that time. Applications implementing WinEvents
- * are perfectly welcome to use it. Clients of IAccessible* will simply
- * turn around and get back a non-visual object that describes the sound.
- */
- #define EVENT_SYSTEM_SOUND 0x0001
- /*
- * EVENT_SYSTEM_ALERT
- * System Alerts:
- * (Generated by MessageBox() calls for example)
- * hwnd is hwndMessageBox
- * idObject is OBJID_ALERT
- * App Alerts:
- * (Generated whenever)
- * hwnd+idObject gets interface pointer to Alert
- */
- #define EVENT_SYSTEM_ALERT 0x0002
- /*
- * EVENT_SYSTEM_FOREGROUND
- * Sent when the foreground (active) window changes, even if it is changing
- * to another window in the same thread as the previous one.
- * hwnd is hwndNewForeground
- * idObject is OBJID_WINDOW
- * idChild is INDEXID_OBJECT
- */
- #define EVENT_SYSTEM_FOREGROUND 0x0003
- /*
- * Menu
- * hwnd is window (top level window or popup menu window)
- * idObject is ID of control (OBJID_MENU, OBJID_SYSMENU, OBJID_SELF for popup)
- * idChild is CHILDID_SELF
- *
- * EVENT_SYSTEM_MENUSTART
- * EVENT_SYSTEM_MENUEND
- * For MENUSTART, hwnd+idObject+idChild refers to the control with the menu bar,
- * or the control bringing up the context menu.
- *
- * Sent when entering into and leaving from menu mode (system, app bar, and
- * track popups).
- */
- #define EVENT_SYSTEM_MENUSTART 0x0004
- #define EVENT_SYSTEM_MENUEND 0x0005
- /*
- * EVENT_SYSTEM_MENUPOPUPSTART
- * EVENT_SYSTEM_MENUPOPUPEND
- * Sent when a menu popup comes up and just before it is taken down. Note
- * that for a call to TrackPopupMenu(), a client will see EVENT_SYSTEM_MENUSTART
- * followed almost immediately by EVENT_SYSTEM_MENUPOPUPSTART for the popup
- * being shown.
- *
- * For MENUPOPUP, hwnd+idObject+idChild refers to the NEW popup coming up, not the
- * parent item which is hierarchical. You can get the parent menu/popup by
- * asking for the accParent object.
- */
- #define EVENT_SYSTEM_MENUPOPUPSTART 0x0006
- #define EVENT_SYSTEM_MENUPOPUPEND 0x0007
- /*
- * EVENT_SYSTEM_CAPTURESTART
- * EVENT_SYSTEM_CAPTUREEND
- * Sent when a window takes the capture and releases the capture.
- */
- #define EVENT_SYSTEM_CAPTURESTART 0x0008
- #define EVENT_SYSTEM_CAPTUREEND 0x0009
- /*
- * Move Size
- * EVENT_SYSTEM_MOVESIZESTART
- * EVENT_SYSTEM_MOVESIZEEND
- * Sent when a window enters and leaves move-size dragging mode.
- */
- #define EVENT_SYSTEM_MOVESIZESTART 0x000A
- #define EVENT_SYSTEM_MOVESIZEEND 0x000B
- /*
- * Context Help
- * EVENT_SYSTEM_CONTEXTHELPSTART
- * EVENT_SYSTEM_CONTEXTHELPEND
- * Sent when a window enters and leaves context sensitive help mode.
- */
- #define EVENT_SYSTEM_CONTEXTHELPSTART 0x000C
- #define EVENT_SYSTEM_CONTEXTHELPEND 0x000D
- /*
- * Drag & Drop
- * EVENT_SYSTEM_DRAGDROPSTART
- * EVENT_SYSTEM_DRAGDROPEND
- * Send the START notification just before going into drag&drop loop. Send
- * the END notification just after canceling out.
- * Note that it is up to apps and OLE to generate this, since the system
- * doesn't know. Like EVENT_SYSTEM_SOUND, it will be a while before this
- * is prevalent.
- */
- #define EVENT_SYSTEM_DRAGDROPSTART 0x000E
- #define EVENT_SYSTEM_DRAGDROPEND 0x000F
- /*
- * Dialog
- * Send the START notification right after the dialog is completely
- * initialized and visible. Send the END right before the dialog
- * is hidden and goes away.
- * EVENT_SYSTEM_DIALOGSTART
- * EVENT_SYSTEM_DIALOGEND
- */
- #define EVENT_SYSTEM_DIALOGSTART 0x0010
- #define EVENT_SYSTEM_DIALOGEND 0x0011
- /*
- * EVENT_SYSTEM_SCROLLING
- * EVENT_SYSTEM_SCROLLINGSTART
- * EVENT_SYSTEM_SCROLLINGEND
- * Sent when beginning and ending the tracking of a scrollbar in a window,
- * and also for scrollbar controls.
- */
- #define EVENT_SYSTEM_SCROLLINGSTART 0x0012
- #define EVENT_SYSTEM_SCROLLINGEND 0x0013
- /*
- * Alt-Tab Window
- * Send the START notification right after the switch window is initialized
- * and visible. Send the END right before it is hidden and goes away.
- * EVENT_SYSTEM_SWITCHSTART
- * EVENT_SYSTEM_SWITCHEND
- */
- #define EVENT_SYSTEM_SWITCHSTART 0x0014
- #define EVENT_SYSTEM_SWITCHEND 0x0015
- /*
- * EVENT_SYSTEM_MINIMIZESTART
- * EVENT_SYSTEM_MINIMIZEEND
- * Sent when a window minimizes and just before it restores.
- */
- #define EVENT_SYSTEM_MINIMIZESTART 0x0016
- #define EVENT_SYSTEM_MINIMIZEEND 0x0017
- #if(_WIN32_WINNT >= 0x0501)
- #define EVENT_CONSOLE_CARET 0x4001
- #define EVENT_CONSOLE_UPDATE_REGION 0x4002
- #define EVENT_CONSOLE_UPDATE_SIMPLE 0x4003
- #define EVENT_CONSOLE_UPDATE_SCROLL 0x4004
- #define EVENT_CONSOLE_LAYOUT 0x4005
- #define EVENT_CONSOLE_START_APPLICATION 0x4006
- #define EVENT_CONSOLE_END_APPLICATION 0x4007
- /*
- * Flags for EVENT_CONSOLE_START/END_APPLICATION.
- */
- #define CONSOLE_APPLICATION_16BIT 0x0001
- /*
- * Flags for EVENT_CONSOLE_CARET
- */
- #define CONSOLE_CARET_SELECTION 0x0001
- #define CONSOLE_CARET_VISIBLE 0x0002
- #endif /* _WIN32_WINNT >= 0x0501 */
- /*
- * Object events
- *
- * The system AND apps generate these. The system generates these for
- * real windows. Apps generate these for objects within their window which
- * act like a separate control, e.g. an item in a list view.
- *
- * When the system generate them, dwParam2 is always WMOBJID_SELF. When
- * apps generate them, apps put the has-meaning-to-the-app-only ID value
- * in dwParam2.
- * For all events, if you want detailed accessibility information, callers
- * should
- * * Call AccessibleObjectFromWindow() with the hwnd, idObject parameters
- * of the event, and IID_IAccessible as the REFIID, to get back an
- * IAccessible* to talk to
- * * Initialize and fill in a VARIANT as VT_I4 with lVal the idChild
- * parameter of the event.
- * * If idChild isn't zero, call get_accChild() in the container to see
- * if the child is an object in its own right. If so, you will get
- * back an IDispatch* object for the child. You should release the
- * parent, and call QueryInterface() on the child object to get its
- * IAccessible*. Then you talk directly to the child. Otherwise,
- * if get_accChild() returns you nothing, you should continue to
- * use the child VARIANT. You will ask the container for the properties
- * of the child identified by the VARIANT. In other words, the
- * child in this case is accessible but not a full-blown object.
- * Like a button on a titlebar which is 'small' and has no children.
- */
- /*
- * For all EVENT_OBJECT events,
- * hwnd is the dude to Send the WM_GETOBJECT message to (unless NULL,
- * see above for system things)
- * idObject is the ID of the object that can resolve any queries a
- * client might have. It's a way to deal with windowless controls,
- * controls that are just drawn on the screen in some larger parent
- * window (like SDM), or standard frame elements of a window.
- * idChild is the piece inside of the object that is affected. This
- * allows clients to access things that are too small to have full
- * blown objects in their own right. Like the thumb of a scrollbar.
- * The hwnd/idObject pair gets you to the container, the dude you
- * probably want to talk to most of the time anyway. The idChild
- * can then be passed into the acc properties to get the name/value
- * of it as needed.
- *
- * Example #1:
- * System propagating a listbox selection change
- * EVENT_OBJECT_SELECTION
- * hwnd == listbox hwnd
- * idObject == OBJID_WINDOW
- * idChild == new selected item, or CHILDID_SELF if
- * nothing now selected within container.
- * Word '97 propagating a listbox selection change
- * hwnd == SDM window
- * idObject == SDM ID to get at listbox 'control'
- * idChild == new selected item, or CHILDID_SELF if
- * nothing
- *
- * Example #2:
- * System propagating a menu item selection on the menu bar
- * EVENT_OBJECT_SELECTION
- * hwnd == top level window
- * idObject == OBJID_MENU
- * idChild == ID of child menu bar item selected
- *
- * Example #3:
- * System propagating a dropdown coming off of said menu bar item
- * EVENT_OBJECT_CREATE
- * hwnd == popup item
- * idObject == OBJID_WINDOW
- * idChild == CHILDID_SELF
- *
- * Example #4:
- *
- * For EVENT_OBJECT_REORDER, the object referred to by hwnd/idObject is the
- * PARENT container in which the zorder is occurring. This is because if
- * one child is zordering, all of them are changing their relative zorder.
- */
- #define EVENT_OBJECT_CREATE 0x8000 // hwnd + ID + idChild is created item
- #define EVENT_OBJECT_DESTROY 0x8001 // hwnd + ID + idChild is destroyed item
- #define EVENT_OBJECT_SHOW 0x8002 // hwnd + ID + idChild is shown item
- #define EVENT_OBJECT_HIDE 0x8003 // hwnd + ID + idChild is hidden item
- #define EVENT_OBJECT_REORDER 0x8004 // hwnd + ID + idChild is parent of zordering children
- /*
- * NOTE:
- * Minimize the number of notifications!
- *
- * When you are hiding a parent object, obviously all child objects are no
- * longer visible on screen. They still have the same "visible" status,
- * but are not truly visible. Hence do not send HIDE notifications for the
- * children also. One implies all. The same goes for SHOW.
- */
- #define EVENT_OBJECT_FOCUS 0x8005 // hwnd + ID + idChild is focused item
- #define EVENT_OBJECT_SELECTION 0x8006 // hwnd + ID + idChild is selected item (if only one), or idChild is OBJID_WINDOW if complex
- #define EVENT_OBJECT_SELECTIONADD 0x8007 // hwnd + ID + idChild is item added
- #define EVENT_OBJECT_SELECTIONREMOVE 0x8008 // hwnd + ID + idChild is item removed
- #define EVENT_OBJECT_SELECTIONWITHIN 0x8009 // hwnd + ID + idChild is parent of changed selected items
- /*
- * NOTES:
- * There is only one "focused" child item in a parent. This is the place
- * keystrokes are going at a given moment. Hence only send a notification
- * about where the NEW focus is going. A NEW item getting the focus already
- * implies that the OLD item is losing it.
- *
- * SELECTION however can be multiple. Hence the different SELECTION
- * notifications. Here's when to use each:
- *
- * (1) Send a SELECTION notification in the simple single selection
- * case (like the focus) when the item with the selection is
- * merely moving to a different item within a container. hwnd + ID
- * is the container control, idChildItem is the new child with the
- * selection.
- *
- * (2) Send a SELECTIONADD notification when a new item has simply been added
- * to the selection within a container. This is appropriate when the
- * number of newly selected items is very small. hwnd + ID is the
- * container control, idChildItem is the new child added to the selection.
- *
- * (3) Send a SELECTIONREMOVE notification when a new item has simply been
- * removed from the selection within a container. This is appropriate
- * when the number of newly selected items is very small, just like
- * SELECTIONADD. hwnd + ID is the container control, idChildItem is the
- * new child removed from the selection.
- *
- * (4) Send a SELECTIONWITHIN notification when the selected items within a
- * control have changed substantially. Rather than propagate a large
- * number of changes to reflect removal for some items, addition of
- * others, just tell somebody who cares that a lot happened. It will
- * be faster an easier for somebody watching to just turn around and
- * query the container control what the new bunch of selected items
- * are.
- */
- #define EVENT_OBJECT_STATECHANGE 0x800A // hwnd + ID + idChild is item w/ state change
- /*
- * Examples of when to send an EVENT_OBJECT_STATECHANGE include
- * * It is being enabled/disabled (USER does for windows)
- * * It is being pressed/released (USER does for buttons)
- * * It is being checked/unchecked (USER does for radio/check buttons)
- */
- #define EVENT_OBJECT_LOCATIONCHANGE 0x800B // hwnd + ID + idChild is moved/sized item
- /*
- * Note:
- * A LOCATIONCHANGE is not sent for every child object when the parent
- * changes shape/moves. Send one notification for the topmost object
- * that is changing. For example, if the user resizes a top level window,
- * USER will generate a LOCATIONCHANGE for it, but not for the menu bar,
- * title bar, scrollbars, etc. that are also changing shape/moving.
- *
- * In other words, it only generates LOCATIONCHANGE notifications for
- * real windows that are moving/sizing. It will not generate a LOCATIONCHANGE
- * for every non-floating child window when the parent moves (the children are
- * logically moving also on screen, but not relative to the parent).
- *
- * Now, if the app itself resizes child windows as a result of being
- * sized, USER will generate LOCATIONCHANGEs for those dudes also because
- * it doesn't know better.
- *
- * Note also that USER will generate LOCATIONCHANGE notifications for two
- * non-window sys objects:
- * (1) System caret
- * (2) Cursor
- */
- #define EVENT_OBJECT_NAMECHANGE 0x800C // hwnd + ID + idChild is item w/ name change
- #define EVENT_OBJECT_DESCRIPTIONCHANGE 0x800D // hwnd + ID + idChild is item w/ desc change
- #define EVENT_OBJECT_VALUECHANGE 0x800E // hwnd + ID + idChild is item w/ value change
- #define EVENT_OBJECT_PARENTCHANGE 0x800F // hwnd + ID + idChild is item w/ new parent
- #define EVENT_OBJECT_HELPCHANGE 0x8010 // hwnd + ID + idChild is item w/ help change
- #define EVENT_OBJECT_DEFACTIONCHANGE 0x8011 // hwnd + ID + idChild is item w/ def action change
- #define EVENT_OBJECT_ACCELERATORCHANGE 0x8012 // hwnd + ID + idChild is item w/ keybd accel change
- /*
- * Child IDs
- */
- /*
- * System Sounds (idChild of system SOUND notification)
- */
- #define SOUND_SYSTEM_STARTUP 1
- #define SOUND_SYSTEM_SHUTDOWN 2
- #define SOUND_SYSTEM_BEEP 3
- #define SOUND_SYSTEM_ERROR 4
- #define SOUND_SYSTEM_QUESTION 5
- #define SOUND_SYSTEM_WARNING 6
- #define SOUND_SYSTEM_INFORMATION 7
- #define SOUND_SYSTEM_MAXIMIZE 8
- #define SOUND_SYSTEM_MINIMIZE 9
- #define SOUND_SYSTEM_RESTOREUP 10
- #define SOUND_SYSTEM_RESTOREDOWN 11
- #define SOUND_SYSTEM_APPSTART 12
- #define SOUND_SYSTEM_FAULT 13
- #define SOUND_SYSTEM_APPEND 14
- #define SOUND_SYSTEM_MENUCOMMAND 15
- #define SOUND_SYSTEM_MENUPOPUP 16
- #define CSOUND_SYSTEM 16
- /*
- * System Alerts (indexChild of system ALERT notification)
- */
- #define ALERT_SYSTEM_INFORMATIONAL 1 // MB_INFORMATION
- #define ALERT_SYSTEM_WARNING 2 // MB_WARNING
- #define ALERT_SYSTEM_ERROR 3 // MB_ERROR
- #define ALERT_SYSTEM_QUERY 4 // MB_QUESTION
- #define ALERT_SYSTEM_CRITICAL 5 // HardSysErrBox
- #define CALERT_SYSTEM 6
- typedef struct tagGUITHREADINFO
- {
- DWORD cbSize;
- DWORD flags;
- HWND hwndActive;
- HWND hwndFocus;
- HWND hwndCapture;
- HWND hwndMenuOwner;
- HWND hwndMoveSize;
- HWND hwndCaret;
- RECT rcCaret;
- } GUITHREADINFO, *PGUITHREADINFO, FAR * LPGUITHREADINFO;
- #define GUI_CARETBLINKING 0x00000001
- #define GUI_INMOVESIZE 0x00000002
- #define GUI_INMENUMODE 0x00000004
- #define GUI_SYSTEMMENUMODE 0x00000008
- #define GUI_POPUPMENUMODE 0x00000010
- #if(_WIN32_WINNT >= 0x0501)
- #define GUI_16BITTASK 0x00000020
- #endif /* _WIN32_WINNT >= 0x0501 */
- WINUSERAPI
- BOOL
- WINAPI
- GetGUIThreadInfo(
- IN DWORD idThread,
- OUT PGUITHREADINFO pgui);
- WINUSERAPI
- UINT
- WINAPI
- GetWindowModuleFileNameA(
- IN HWND hwnd,
- OUT LPSTR pszFileName,
- IN UINT cchFileNameMax);
- WINUSERAPI
- UINT
- WINAPI
- GetWindowModuleFileNameW(
- IN HWND hwnd,
- OUT LPWSTR pszFileName,
- IN UINT cchFileNameMax);
- #ifdef UNICODE
- #define GetWindowModuleFileName GetWindowModuleFileNameW
- #else
- #define GetWindowModuleFileName GetWindowModuleFileNameA
- #endif // !UNICODE
- #ifndef NO_STATE_FLAGS
- #define STATE_SYSTEM_UNAVAILABLE 0x00000001 // Disabled
- #define STATE_SYSTEM_SELECTED 0x00000002
- #define STATE_SYSTEM_FOCUSED 0x00000004
- #define STATE_SYSTEM_PRESSED 0x00000008
- #define STATE_SYSTEM_CHECKED 0x00000010
- #define STATE_SYSTEM_MIXED 0x00000020 // 3-state checkbox or toolbar button
- #define STATE_SYSTEM_INDETERMINATE STATE_SYSTEM_MIXED
- #define STATE_SYSTEM_READONLY 0x00000040
- #define STATE_SYSTEM_HOTTRACKED 0x00000080
- #define STATE_SYSTEM_DEFAULT 0x00000100
- #define STATE_SYSTEM_EXPANDED 0x00000200
- #define STATE_SYSTEM_COLLAPSED 0x00000400
- #define STATE_SYSTEM_BUSY 0x00000800
- #define STATE_SYSTEM_FLOATING 0x00001000 // Children "owned" not "contained" by parent
- #define STATE_SYSTEM_MARQUEED 0x00002000
- #define STATE_SYSTEM_ANIMATED 0x00004000
- #define STATE_SYSTEM_INVISIBLE 0x00008000
- #define STATE_SYSTEM_OFFSCREEN 0x00010000
- #define STATE_SYSTEM_SIZEABLE 0x00020000
- #define STATE_SYSTEM_MOVEABLE 0x00040000
- #define STATE_SYSTEM_SELFVOICING 0x00080000
- #define STATE_SYSTEM_FOCUSABLE 0x00100000
- #define STATE_SYSTEM_SELECTABLE 0x00200000
- #define STATE_SYSTEM_LINKED 0x00400000
- #define STATE_SYSTEM_TRAVERSED 0x00800000
- #define STATE_SYSTEM_MULTISELECTABLE 0x01000000 // Supports multiple selection
- #define STATE_SYSTEM_EXTSELECTABLE 0x02000000 // Supports extended selection
- #define STATE_SYSTEM_ALERT_LOW 0x04000000 // This information is of low priority
- #define STATE_SYSTEM_ALERT_MEDIUM 0x08000000 // This information is of medium priority
- #define STATE_SYSTEM_ALERT_HIGH 0x10000000 // This information is of high priority
- #define STATE_SYSTEM_PROTECTED 0x20000000 // access to this is restricted
- #define STATE_SYSTEM_VALID 0x3FFFFFFF
- #endif
- #define CCHILDREN_TITLEBAR 5
- #define CCHILDREN_SCROLLBAR 5
- /*
- * Information about the global cursor.
- */
- typedef struct tagCURSORINFO
- {
- DWORD cbSize;
- DWORD flags;
- HCURSOR hCursor;
- POINT ptScreenPos;
- } CURSORINFO, *PCURSORINFO, *LPCURSORINFO;
- #define CURSOR_SHOWING 0x00000001
- WINUSERAPI
- BOOL
- WINAPI
- GetCursorInfo(
- OUT PCURSORINFO pci
- );
- /*
- * Window information snapshot
- */
- typedef struct tagWINDOWINFO
- {
- DWORD cbSize;
- RECT rcWindow;
- RECT rcClient;
- DWORD dwStyle;
- DWORD dwExStyle;
- DWORD dwWindowStatus;
- UINT cxWindowBorders;
- UINT cyWindowBorders;
- ATOM atomWindowType;
- WORD wCreatorVersion;
- } WINDOWINFO, *PWINDOWINFO, *LPWINDOWINFO;
- #define WS_ACTIVECAPTION 0x0001
- WINUSERAPI
- BOOL
- WINAPI
- GetWindowInfo(
- IN HWND hwnd,
- OUT PWINDOWINFO pwi
- );
- /*
- * Titlebar information.
- */
- typedef struct tagTITLEBARINFO
- {
- DWORD cbSize;
- RECT rcTitleBar;
- DWORD rgstate[CCHILDREN_TITLEBAR+1];
- } TITLEBARINFO, *PTITLEBARINFO, *LPTITLEBARINFO;
- WINUSERAPI
- BOOL
- WINAPI
- GetTitleBarInfo(
- IN HWND hwnd,
- OUT PTITLEBARINFO pti
- );
- /*
- * Menubar information
- */
- typedef struct tagMENUBARINFO
- {
- DWORD cbSize;
- RECT rcBar; // rect of bar, popup, item
- HMENU hMenu; // real menu handle of bar, popup
- HWND hwndMenu; // hwnd of item submenu if one
- BOOL fBarFocused:1; // bar, popup has the focus
- BOOL fFocused:1; // item has the focus
- } MENUBARINFO, *PMENUBARINFO, *LPMENUBARINFO;
- WINUSERAPI
- BOOL
- WINAPI
- GetMenuBarInfo(
- IN HWND hwnd,
- IN LONG idObject,
- IN LONG idItem,
- OUT PMENUBARINFO pmbi
- );
- /*
- * Scrollbar information
- */
- typedef struct tagSCROLLBARINFO
- {
- DWORD cbSize;
- RECT rcScrollBar;
- int dxyLineButton;
- int xyThumbTop;
- int xyThumbBottom;
- int reserved;
- DWORD rgstate[CCHILDREN_SCROLLBAR+1];
- } SCROLLBARINFO, *PSCROLLBARINFO, *LPSCROLLBARINFO;
- WINUSERAPI
- BOOL
- WINAPI
- GetScrollBarInfo(
- IN HWND hwnd,
- IN LONG idObject,
- OUT PSCROLLBARINFO psbi
- );
- /*
- * Combobox information
- */
- typedef struct tagCOMBOBOXINFO
- {
- DWORD cbSize;
- RECT rcItem;
- RECT rcButton;
- DWORD stateButton;
- HWND hwndCombo;
- HWND hwndItem;
- HWND hwndList;
- } COMBOBOXINFO, *PCOMBOBOXINFO, *LPCOMBOBOXINFO;
- WINUSERAPI
- BOOL
- WINAPI
- GetComboBoxInfo(
- IN HWND hwndCombo,
- OUT PCOMBOBOXINFO pcbi
- );
- /*
- * The "real" ancestor window
- */
- #define GA_PARENT 1
- #define GA_ROOT 2
- #define GA_ROOTOWNER 3
- WINUSERAPI
- HWND
- WINAPI
- GetAncestor(
- IN HWND hwnd,
- IN UINT gaFlags
- );
- /*
- * This gets the REAL child window at the point. If it is in the dead
- * space of a group box, it will try a sibling behind it. But static
- * fields will get returned. In other words, it is kind of a cross between
- * ChildWindowFromPointEx and WindowFromPoint.
- */
- WINUSERAPI
- HWND
- WINAPI
- RealChildWindowFromPoint(
- IN HWND hwndParent,
- IN POINT ptParentClientCoords
- );
- /*
- * This gets the name of the window TYPE, not class. This allows us to
- * recognize ThunderButton32 et al.
- */
- WINUSERAPI
- UINT
- WINAPI
- RealGetWindowClassA(
- IN HWND hwnd,
- OUT LPSTR pszType,
- IN UINT cchType
- );
- /*
- * This gets the name of the window TYPE, not class. This allows us to
- * recognize ThunderButton32 et al.
- */
- WINUSERAPI
- UINT
- WINAPI
- RealGetWindowClassW(
- IN HWND hwnd,
- OUT LPWSTR pszType,
- IN UINT cchType
- );
- #ifdef UNICODE
- #define RealGetWindowClass RealGetWindowClassW
- #else
- #define RealGetWindowClass RealGetWindowClassA
- #endif // !UNICODE
- /*
- * Alt-Tab Switch window information.
- */
- typedef struct tagALTTABINFO
- {
- DWORD cbSize;
- int cItems;
- int cColumns;
- int cRows;
- int iColFocus;
- int iRowFocus;
- int cxItem;
- int cyItem;
- POINT ptStart;
- } ALTTABINFO, *PALTTABINFO, *LPALTTABINFO;
- WINUSERAPI
- BOOL
- WINAPI
- GetAltTabInfoA(
- IN HWND hwnd,
- IN int iItem,
- OUT PALTTABINFO pati,
- OUT LPSTR pszItemText,
- IN UINT cchItemText
- );
- WINUSERAPI
- BOOL
- WINAPI
- GetAltTabInfoW(
- IN HWND hwnd,
- IN int iItem,
- OUT PALTTABINFO pati,
- OUT LPWSTR pszItemText,
- IN UINT cchItemText
- );
- #ifdef UNICODE
- #define GetAltTabInfo GetAltTabInfoW
- #else
- #define GetAltTabInfo GetAltTabInfoA
- #endif // !UNICODE
- /*
- * Listbox information.
- * Returns the number of items per row.
- */
- WINUSERAPI
- DWORD
- WINAPI
- GetListBoxInfo(
- IN HWND hwnd
- );
- #endif /* NOWINABLE */
- #endif /* WINVER >= 0x0500 */
- #if(_WIN32_WINNT >= 0x0500)
- WINUSERAPI
- BOOL
- WINAPI
- LockWorkStation(
- VOID);
- #endif /* _WIN32_WINNT >= 0x0500 */
- #if(_WIN32_WINNT >= 0x0500)
- WINUSERAPI
- BOOL
- WINAPI
- UserHandleGrantAccess(
- HANDLE hUserHandle,
- HANDLE hJob,
- BOOL bGrant);
- #endif /* _WIN32_WINNT >= 0x0500 */
- #if(_WIN32_WINNT >= 0x0501)
- /*
- * Raw Input Messages.
- */
- DECLARE_HANDLE(HRAWINPUT);
- /*
- * WM_INPUT wParam
- */
- /*
- * Use this macro to get the input code from wParam.
- */
- #define GET_RAWINPUT_CODE_WPARAM(wParam) ((wParam) & 0xff)
- /*
- * The input is in the regular message flow,
- * the app is required to call DefWindowProc
- * so that the system can perform clean ups.
- */
- #define RIM_INPUT 0
- /*
- * The input is sink only. The app is expected
- * to behave nicely, honoring RIM_FOREGROUND etc.
- */
- #define RIM_INPUTSINK 1
- /*
- * Raw Input data header
- */
- typedef struct tagRAWINPUTHEADER {
- DWORD dwType;
- DWORD dwSize;
- HANDLE hDevice;
- WPARAM wParam;
- } RAWINPUTHEADER, *PRAWINPUTHEADER, *LPRAWINPUTHEADER;
- /*
- * Type of the raw input
- */
- #define RIM_TYPEMOUSE 0
- #define RIM_TYPEKEYBOARD 1
- #define RIM_TYPEHID 2
- /*
- * Raw format of the mouse input
- */
- typedef struct tagRAWMOUSE {
- /*
- * Indicator flags.
- */
- USHORT usFlags;
- /*
- * The transition state of the mouse buttons.
- */
- union {
- ULONG ulButtons;
- struct {
- USHORT usButtonFlags;
- USHORT usButtonData;
- };
- };
- /*
- * The raw state of the mouse buttons.
- */
- ULONG ulRawButtons;
- /*
- * The signed relative or absolute motion in the X direction.
- */
- LONG lLastX;
- /*
- * The signed relative or absolute motion in the Y direction.
- */
- LONG lLastY;
- /*
- * Device-specific additional information for the event.
- */
- ULONG ulExtraInformation;
- } RAWMOUSE, *PRAWMOUSE, *LPRAWMOUSE;
- /*
- * Define the mouse button state indicators.
- */
- #define RI_MOUSE_LEFT_BUTTON_DOWN 0x0001 // Left Button changed to down.
- #define RI_MOUSE_LEFT_BUTTON_UP 0x0002 // Left Button changed to up.
- #define RI_MOUSE_RIGHT_BUTTON_DOWN 0x0004 // Right Button changed to down.
- #define RI_MOUSE_RIGHT_BUTTON_UP 0x0008 // Right Button changed to up.
- #define RI_MOUSE_MIDDLE_BUTTON_DOWN 0x0010 // Middle Button changed to down.
- #define RI_MOUSE_MIDDLE_BUTTON_UP 0x0020 // Middle Button changed to up.
- #define RI_MOUSE_BUTTON_1_DOWN RI_MOUSE_LEFT_BUTTON_DOWN
- #define RI_MOUSE_BUTTON_1_UP RI_MOUSE_LEFT_BUTTON_UP
- #define RI_MOUSE_BUTTON_2_DOWN RI_MOUSE_RIGHT_BUTTON_DOWN
- #define RI_MOUSE_BUTTON_2_UP RI_MOUSE_RIGHT_BUTTON_UP
- #define RI_MOUSE_BUTTON_3_DOWN RI_MOUSE_MIDDLE_BUTTON_DOWN
- #define RI_MOUSE_BUTTON_3_UP RI_MOUSE_MIDDLE_BUTTON_UP
- #define RI_MOUSE_BUTTON_4_DOWN 0x0040
- #define RI_MOUSE_BUTTON_4_UP 0x0080
- #define RI_MOUSE_BUTTON_5_DOWN 0x0100
- #define RI_MOUSE_BUTTON_5_UP 0x0200
- /*
- * If usButtonFlags has RI_MOUSE_WHEEL, the wheel delta is stored in usButtonData.
- * Take it as a signed value.
- */
- #define RI_MOUSE_WHEEL 0x0400
- /*
- * Define the mouse indicator flags.
- */
- #define MOUSE_MOVE_RELATIVE 0
- #define MOUSE_MOVE_ABSOLUTE 1
- #define MOUSE_VIRTUAL_DESKTOP 0x02 // the coordinates are mapped to the virtual desktop
- #define MOUSE_ATTRIBUTES_CHANGED 0x04 // requery for mouse attributes
- /*
- * Raw format of the keyboard input
- */
- typedef struct tagRAWKEYBOARD {
- /*
- * The "make" scan code (key depression).
- */
- USHORT MakeCode;
- /*
- * The flags field indicates a "break" (key release) and other
- * miscellaneous scan code information defined in ntddkbd.h.
- */
- USHORT Flags;
- USHORT Reserved;
- /*
- * Windows message compatible information
- */
- USHORT VKey;
- UINT Message;
- /*
- * Device-specific additional information for the event.
- */
- ULONG ExtraInformation;
- } RAWKEYBOARD, *PRAWKEYBOARD, *LPRAWKEYBOARD;
- /*
- * Define the keyboard overrun MakeCode.
- */
- #define KEYBOARD_OVERRUN_MAKE_CODE 0xFF
- /*
- * Define the keyboard input data Flags.
- */
- #define RI_KEY_MAKE 0
- #define RI_KEY_BREAK 1
- #define RI_KEY_E0 2
- #define RI_KEY_E1 4
- #define RI_KEY_TERMSRV_SET_LED 8
- #define RI_KEY_TERMSRV_SHADOW 0x10
- /*
- * Raw format of the input from Human Input Devices
- */
- typedef struct tagRAWHID {
- DWORD dwSizeHid; // byte size of each report
- DWORD dwCount; // number of input packed
- BYTE bRawData[1];
- } RAWHID, *PRAWHID, *LPRAWHID;
- /*
- * RAWINPUT data structure.
- */
- typedef struct tagRAWINPUT {
- RAWINPUTHEADER header;
- union {
- RAWMOUSE mouse;
- RAWKEYBOARD keyboard;
- RAWHID hid;
- } data;
- } RAWINPUT, *PRAWINPUT, *LPRAWINPUT;
- #ifdef _WIN64
- #define RAWINPUT_ALIGN(x) (((x) + sizeof(QWORD) - 1) & ~(sizeof(QWORD) - 1))
- #else // _WIN64
- #define RAWINPUT_ALIGN(x) (((x) + sizeof(DWORD) - 1) & ~(sizeof(DWORD) - 1))
- #endif // _WIN64
- #define NEXTRAWINPUTBLOCK(ptr) ((PRAWINPUT)RAWINPUT_ALIGN((ULONG_PTR)((PBYTE)(ptr) + (ptr)->header.dwSize)))
- /*
- * Flags for GetRawInputData
- */
- #define RID_INPUT 0x10000003
- #define RID_HEADER 0x10000005
- WINUSERAPI
- UINT
- WINAPI
- GetRawInputData(
- IN HRAWINPUT hRawInput,
- IN UINT uiCommand,
- OUT LPVOID pData,
- IN OUT PUINT pcbSize,
- IN UINT cbSizeHeader);
- /*
- * Raw Input Device Information
- */
- #define RIDI_PREPARSEDDATA 0x20000005
- #define RIDI_DEVICENAME 0x20000007 // the return valus is the character length, not the byte size
- #define RIDI_DEVICEINFO 0x2000000b
- typedef struct tagRID_DEVICE_INFO_MOUSE {
- DWORD dwId;
- DWORD dwNumberOfButtons;
- DWORD dwSampleRate;
- } RID_DEVICE_INFO_MOUSE, *PRID_DEVICE_INFO_MOUSE;
- typedef struct tagRID_DEVICE_INFO_KEYBOARD {
- DWORD dwType;
- DWORD dwSubType;
- DWORD dwKeyboardMode;
- DWORD dwNumberOfFunctionKeys;
- DWORD dwNumberOfIndicators;
- DWORD dwNumberOfKeysTotal;
- } RID_DEVICE_INFO_KEYBOARD, *PRID_DEVICE_INFO_KEYBOARD;
- typedef struct tagRID_DEVICE_INFO_HID {
- DWORD dwVendorId;
- DWORD dwProductId;
- DWORD dwVersionNumber;
- /*
- * Top level collection UsagePage and Usage
- */
- USHORT usUsagePage;
- USHORT usUsage;
- } RID_DEVICE_INFO_HID, *PRID_DEVICE_INFO_HID;
- typedef struct tagRID_DEVICE_INFO {
- DWORD cbSize;
- DWORD dwType;
- union {
- RID_DEVICE_INFO_MOUSE mouse;
- RID_DEVICE_INFO_KEYBOARD keyboard;
- RID_DEVICE_INFO_HID hid;
- };
- } RID_DEVICE_INFO, *PRID_DEVICE_INFO, *LPRID_DEVICE_INFO;
- WINUSERAPI
- UINT
- WINAPI
- GetRawInputDeviceInfoA(
- IN HANDLE hDevice,
- IN UINT uiCommand,
- OUT LPVOID pData,
- IN OUT PUINT pcbSize);
- WINUSERAPI
- UINT
- WINAPI
- GetRawInputDeviceInfoW(
- IN HANDLE hDevice,
- IN UINT uiCommand,
- OUT LPVOID pData,
- IN OUT PUINT pcbSize);
- #ifdef UNICODE
- #define GetRawInputDeviceInfo GetRawInputDeviceInfoW
- #else
- #define GetRawInputDeviceInfo GetRawInputDeviceInfoA
- #endif // !UNICODE
- /*
- * Raw Input Bulk Read: GetRawInputBuffer
- */
- WINUSERAPI
- UINT
- WINAPI
- GetRawInputBuffer(
- OUT PRAWINPUT pData,
- IN OUT PUINT pcbSize,
- IN UINT cbSizeHeader);
- /*
- * Raw Input request APIs
- */
- typedef struct tagRAWINPUTDEVICE {
- USHORT usUsagePage; // Toplevel collection UsagePage
- USHORT usUsage; // Toplevel collection Usage
- DWORD dwFlags;
- HWND hwndTarget; // Target hwnd. NULL = follows keyboard focus
- } RAWINPUTDEVICE, *PRAWINPUTDEVICE, *LPRAWINPUTDEVICE;
- typedef CONST RAWINPUTDEVICE* PCRAWINPUTDEVICE;
- #define RIDEV_REMOVE 0x00000001
- #define RIDEV_EXCLUDE 0x00000010
- #define RIDEV_PAGEONLY 0x00000020
- #define RIDEV_NOLEGACY 0x00000030
- #define RIDEV_CAPTUREMOUSE 0x00000200 // effective when mouse nolegacy is specified, otherwise it would be an error
- #define RIDEV_NOHOTKEYS 0x00000200 // effective for keyboard.
- #define RIDEV_EXMODEMASK 0x000000F0
- #define RIDEV_EXMODE(mode) ((mode) & RIDEV_EXMODEMASK)
- WINUSERAPI
- BOOL
- WINAPI
- RegisterRawInputDevices(
- IN PCRAWINPUTDEVICE pRawInputDevices,
- IN UINT uiNumDevices,
- IN UINT cbSize);
- WINUSERAPI
- UINT
- WINAPI
- GetRegisteredRawInputDevices(
- OUT PRAWINPUTDEVICE pRawInputDevices,
- IN OUT PUINT puiNumDevices,
- IN UINT cbSize);
- typedef struct tagRAWINPUTDEVICELIST {
- HANDLE hDevice;
- DWORD dwType;
- } RAWINPUTDEVICELIST, *PRAWINPUTDEVICELIST;
- WINUSERAPI
- UINT
- WINAPI
- GetRawInputDeviceList(
- OUT PRAWINPUTDEVICELIST pRawInputDeviceList,
- IN OUT PUINT puiNumDevices,
- IN UINT cbSize);
- WINUSERAPI
- LRESULT
- WINAPI
- DefRawInputProc(
- IN PRAWINPUT* paRawInput,
- IN INT nInput,
- IN UINT cbSizeHeader);
- #endif /* _WIN32_WINNT >= 0x0501 */
- #if !defined(RC_INVOKED) /* RC complains about long symbols in #ifs */
- #if ISOLATION_AWARE_ENABLED
- #include "winuser.inl"
- #endif /* ISOLATION_AWARE_ENABLED */
- #endif /* RC */
- #ifdef __cplusplus
- }
- #endif /* __cplusplus */
- #endif /* !_WINUSER_ */