]> git.saurik.com Git - wxWidgets.git/commitdiff
Corrections
authorJulian Smart <julian@anthemion.co.uk>
Mon, 16 May 2005 11:33:30 +0000 (11:33 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Mon, 16 May 2005 11:33:30 +0000 (11:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/missing.h

index 3297e1bd63ba6eb16d9a4f103d58bf1a49360140..a23ca2e3e01444c68f734026deeebc0c94fbd036 100644 (file)
 #endif
 
  /*
-  * In addition to the above, the following are required for BC++ 5.5.
-  * (None presently.)
+  * In addition to the above, the following are required for several compilers.
+  */
+
+#if !defined(CCS_VERT)
+#define CCS_VERT                0x00000080L
+#endif
+
+#if !defined(TB_SETDISABLEDIMAGELIST)
+    #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
+#endif // !defined(TB_SETDISABLEDIMAGELIST)
+
+#ifndef CFM_BACKCOLOR
+    #define CFM_BACKCOLOR 0x04000000
+#endif
+
+ /*
+  * The following are required for BC++ 5.5 (none at present.)
   */
 
  /*
-  * In addition to the above, the following are required for Digital Mars C++
+  * The following are specifically required for Digital Mars C++
   */
 
 #ifdef __DMC__
     #define LVSICF_NOSCROLL         0x0002
 #endif
 
-// ----------------------------------------------------------------------------
-// Toolbar define value missing
-// ----------------------------------------------------------------------------
-#if !defined(CCS_VERT)
-#define CCS_VERT                0x00000080L
-#endif
-
-#if !defined(TB_SETDISABLEDIMAGELIST)
-    #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
-#endif // !defined(TB_SETDISABLEDIMAGELIST)
-
 // ----------------------------------------------------------------------------
 // Tree control
 // ----------------------------------------------------------------------------
     // DMC++
 
  /*
-  * In addition to the declarations for VC++, the following are required for OpenWatcom C++
+  * The following are specifically required for OpenWatcom C++ (none at present)
   */
 
 #if defined(__WATCOMC__)
-#ifndef CFM_BACKCOLOR
-    #define CFM_BACKCOLOR 0x04000000
-#endif
-
-#if !defined(CCS_VERT)
-#define CCS_VERT                0x00000080L
-#endif
-
-#if !defined(TB_SETDISABLEDIMAGELIST)
-    #define TB_SETDISABLEDIMAGELIST (WM_USER + 54)
-#endif // !defined(TB_SETDISABLEDIMAGELIST)
-
 #endif
 
  /*
-  * In addition to the declarations for VC++, the following are required for MinGW
+  * The following are specifically required for MinGW (none at present)
   */
 
 #if defined (__MINGW32__)
-#ifndef CFM_BACKCOLOR
-    #define CFM_BACKCOLOR 0x04000000
-#endif
 #endif
 
  /*