]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/defs.h
wxScrolledWindow inherits from wxPanel to
[wxWidgets.git] / include / wx / defs.h
index 22eeaba4a612b452a1504216ee4557b56f54aed0..71c80d3284c449efae782eda03d6c5948d9aeed1 100644 (file)
         // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed)
         // but not implemented, so we must #define it
         #define bool unsigned int
+    #elif defined(__VISUALC__) && (__VISUALC__ == 1010)
+        // For VisualC++ 4.1, we need to define
+        // bool as something between 4.0 & 5.0...
+        typedef unsigned int wxbool;
+        #define bool wxbool
+        #define HAVE_BOOL
     #elif defined(__VISUALC__) && (__VISUALC__ > 1020)
         // VC++ supports bool since 4.2
         #define HAVE_BOOL