added wxSIZE_T.. defines (every release of CW has a different typedef but I hope they all end up as unsigned long

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16703 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2002-08-23 12:41:01 +00:00
parent 1fc32b12ee
commit 26bea6ac6d

View File

@@ -146,6 +146,9 @@
defined(THINK_C) || \ defined(THINK_C) || \
(defined(__MWERKS__) && !defined(__INTEL__)) (defined(__MWERKS__) && !defined(__INTEL__))
/* MacOS */ /* MacOS */
#if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
#define wxSIZE_T_IS_ULONG
#endif
#elif defined(__WXMAC__) && defined(__APPLE__) #elif defined(__WXMAC__) && defined(__APPLE__)
/* Mac OS X */ /* Mac OS X */
#define __UNIX_LIKE__ #define __UNIX_LIKE__
@@ -167,6 +170,9 @@
#define __POWERPC__ 1 #define __POWERPC__ 1
#endif #endif
#if !defined(wxSIZE_T_IS_UINT) && !defined(wxSIZE_T_IS_ULONG)
#define wxSIZE_T_IS_ULONG
#endif
/* /*
Some code has been added to workaround defects(?) in the Some code has been added to workaround defects(?) in the
bundled gcc compiler. These corrections are identified by bundled gcc compiler. These corrections are identified by