]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/longlong.h
added wxEncodingToCodepage() and implemented it properly (using in32 API instead...
[wxWidgets.git] / include / wx / longlong.h
index 9b7aff7cae039a3f6875dd6eb5456b9fe0bd4e41..ea3fd1c685b19ed937218d4ed05548890155ca8c 100644 (file)
@@ -94,6 +94,7 @@
     #endif
 
     class WXDLLEXPORT wxLongLongWx;
+    class WXDLLEXPORT wxULongLongWx;
 #if defined(__VISUALC__) && !defined(__WIN32__)
     #define wxLongLong wxLongLongWx
     #define wxULongLong wxULongLongWx
@@ -874,7 +875,7 @@ public:
 private:
     // long is at least 32 bits, so represent our 64bit number as 2 longs
 
-    unsigned long m_hi
+    unsigned long m_hi;
     unsigned long m_lo;
 
 #ifdef wxLONGLONG_TEST_MODE