Applied patch [ 817483 ] fix for Formatspec for 64bit integer with mingw32 compiler

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@24742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-12-11 08:56:00 +00:00
parent 8ea3336c3f
commit 31679bc6aa

View File

@@ -68,7 +68,11 @@
(defined(__DJGPP__) && __DJGPP__ >= 2) (defined(__DJGPP__) && __DJGPP__ >= 2)
#define wxLongLong_t long long #define wxLongLong_t long long
#define wxLongLongSuffix ll #define wxLongLongSuffix ll
#if defined(__MINGW32__)
#define wxLongLongFmtSpec _T("I64")
#else
#define wxLongLongFmtSpec _T("ll") #define wxLongLongFmtSpec _T("ll")
#endif
#elif defined(__MWERKS__) #elif defined(__MWERKS__)
#if __option(longlong) #if __option(longlong)
#define wxLongLong_t long long #define wxLongLong_t long long