Corrections

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-05-16 11:33:30 +00:00
parent 7d0bbd18ed
commit c6c2445d88

View File

@@ -95,12 +95,27 @@
#endif #endif
/* /*
* In addition to the above, the following are required for BC++ 5.5. * In addition to the above, the following are required for several compilers.
* (None presently.) */
#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__ #ifdef __DMC__
@@ -149,17 +164,6 @@
#define LVSICF_NOSCROLL 0x0002 #define LVSICF_NOSCROLL 0x0002
#endif #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 // Tree control
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@@ -189,32 +193,17 @@
// DMC++ // 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__) #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 #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__) #if defined (__MINGW32__)
#ifndef CFM_BACKCOLOR
#define CFM_BACKCOLOR 0x04000000
#endif
#endif #endif
/* /*