]> git.saurik.com Git - wxWidgets.git/commitdiff
define WS_XXX constants missing in (some) CE SDKs
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 13 Apr 2004 12:25:56 +0000 (12:25 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 13 Apr 2004 12:25:56 +0000 (12:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26745 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/wince/missing.h

index 6bb4acd51f18aa141393bd2ca36c22b0c0c07a5a..1ce4c9624ae08a189fd96a43807ad604d2e68991 100644 (file)
@@ -92,6 +92,21 @@ extern "C"
 #define HGDI_ERROR ((HANDLE)(0xFFFFFFFFL))
 #endif
 
+// some windows styles don't exist in CE SDK, replace them with closest
+// equivalents
+#ifndef WS_THICKFRAME
+    #define WS_THICKFRAME WS_BORDER
+#endif
+
+#ifndef WS_MINIMIZE
+    #define WS_MINIMIZE 0
+#endif
+
+#ifndef WS_MAXIMIZE
+    #define WS_MAXIMIZE 0
+#endif
+
+
 // global memory functions don't exist under CE (good riddance, of course, but
 // the existing code still uses them in some places, so make it compile)
 //