From 635f9b534e8e8425954e5c01b09f6ef28dcb95b4 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 17 Oct 2002 16:30:36 +0000 Subject: [PATCH] added wxLongLongSuffix and wxLongLongFmtSpec for CW git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17547 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/longlong.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wx/longlong.h b/include/wx/longlong.h index 2315307c8b..db1bc25975 100644 --- a/include/wx/longlong.h +++ b/include/wx/longlong.h @@ -72,6 +72,8 @@ #elif defined(__MWERKS__) #if __option(longlong) #define wxLongLong_t long long + #define wxLongLongSuffix ll + #define wxLongLongFmtSpec _T("ll") #else #error "The 64 bit integer support in CodeWarrior has been disabled." #error "See the documentation on the 'longlong' pragma."