* include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
* include/winbase.h: (GetFileAttributesExW): Fix typo. * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*. (StartDocB): Chage LNPDOCINFOB to DOCINFOB*. Thanks To: Kent Tamura <tkent@users.sourceforge.net> * include/winnt.h: (GetFiberData): Add __inline assembler coding. (GetCurrentFiber): Ditto. Thanks to: Andy Younger <AndyY@redlemon.com> * include/windef.h: (HMONITOR_DECLARED): New definition to stop DirectX 8 from complaining. Thanks to: Sigbj�rn Lund Olsen <mosikos@online.no> * include/commctrl.h Updated TreeView and ListView defines and macros. * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4 and above.
This commit is contained in:
@ -648,7 +648,14 @@ extern "C" {
|
||||
#define MB_ICONSTOP 16
|
||||
#define MB_OKCANCEL 1
|
||||
#define MB_RETRYCANCEL 5
|
||||
#define MB_SERVICE_NOTIFICATION 0x40000
|
||||
#ifdef _WIN32_WINNT
|
||||
#if (_WIN32_WINNT >= 0x0400)
|
||||
#define MB_SERVICE_NOTIFICATION 0x00200000
|
||||
#else
|
||||
#define MB_SERVICE_NOTIFICATION 0x00040000
|
||||
#endif
|
||||
#define MB_SERVICE_NOTIFICATION_NT3X 0x00040000
|
||||
#endif
|
||||
#define MB_SETFOREGROUND 0x10000
|
||||
#define MB_SYSTEMMODAL 4096
|
||||
#define MB_TASKMODAL 0x2000
|
||||
|
Reference in New Issue
Block a user