]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/defs.h
derive wxStaticText from wxStaticTextBase under wxGTK1 too, in particular thi sfixes...
[wxWidgets.git] / include / wx / defs.h
index eff3612016b407c325fda624de7c9731ccc78d10..59204076013d737291555935db12836e5bc40f6a 100644 (file)
@@ -881,6 +881,14 @@ typedef wxUint16 wxWord;
 
 typedef wxUint32 wxDword;
 
+#ifdef LLONG_MAX
+    #define wxINT64_MAX LLONG_MAX
+    #define wxINT64_MIN LLONG_MIN
+#else
+    #define wxINT64_MAX wxLL(9223372036854775807)
+    #define wxINT64_MIN wxLL(-9223372036854775807-1)
+#endif
+
 /*
    Define an integral type big enough to contain all of long, size_t and void *.
  */