OSDN Git Service

2002-09-03 René Møller Fonseca <fonseca@users.sourceforge.net>
authordannysmith <dannysmith>
Tue, 3 Sep 2002 22:29:10 +0000 (22:29 +0000)
committerdannysmith <dannysmith>
Tue, 3 Sep 2002 22:29:10 +0000 (22:29 +0000)
* include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
Add WINVER guards for dialog box command id defines.

winsup/w32api/ChangeLog
winsup/w32api/include/winuser.h

index 0e41240..866d3d8 100644 (file)
@@ -1,3 +1,8 @@
+2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
+
+       * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
+       Add WINVER guards for dialog box command id defines.
+
 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
 
        * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
index ff012a7..0985244 100644 (file)
@@ -693,15 +693,23 @@ extern "C" {
 #define MB_NOFOCUS 0x00008000
 #define MB_TYPEMASK 15
 #define MB_TOPMOST 0x40000
-#define IDABORT 3
-#define IDCANCEL 2
-#define IDCLOSE 8
-#define IDHELP 9
-#define IDIGNORE 5
-#define IDNO 7
+
 #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
+#if (WINVER >= 0x0500)
+#  define IDTRYAGAIN 10
+#  define IDCONTINUE 11
+#endif
+
 #define GWL_EXSTYLE (-20)
 #define GWL_STYLE (-16)
 #define GWL_WNDPROC (-4)