]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wince/chkconf.h
use built in VC8 time functions instead of our (almost certainly broken) ones for...
[wxWidgets.git] / include / wx / msw / wince / chkconf.h
index 87315e9e3bbc760613b75970022b0483f33328db..2c2b6580872bd68ce7237781c85b9f725ae52335 100644 (file)
@@ -1,5 +1,5 @@
 ///////////////////////////////////////////////////////////////////////////////
-// Name:        wx/wince/chkconf.h
+// Name:        wx/msw/wince/chkconf.h
 // Purpose:     WinCE-specific configuration options checks
 // Author:      Vadim Zeitlin
 // Modified by:
     #define wxUSE_STDPATHS 0
 #endif // WCE_PLATFORM_STANDARDSDK
 
+#if _WIN32_WCE < 400
+    // not enough API and lack of ddraw.h
+    #undef wxUSE_DISPLAY
+    #define wxUSE_DISPLAY 0
+#endif
+
 // DDE doesn't exist under WinCE and wxIPC is DDE-based under MSW
 #undef wxUSE_IPC
 #define wxUSE_IPC 0
 #undef wxUSE_ON_FATAL_EXCEPTION
 #define wxUSE_ON_FATAL_EXCEPTION 0
 
-// media stuff not supported under CE
-#undef wxUSE_MEDIACTRL
-#define wxUSE_MEDIACTRL 0
-
 #undef wxUSE_WXHTML_HELP
 #define wxUSE_WXHTML_HELP 0
 
@@ -69,7 +71,7 @@
 
 
 // Disable features which don't make sense for MS Smartphones
-// (due to pointer device usage, limited controls, file system)
+// (due to pointer device usage, limited controls or dialogs, file system)
 #if defined(__SMARTPHONE__)
     #undef wxUSE_LISTBOOK
     #define wxUSE_LISTBOOK 0
@@ -79,6 +81,9 @@
 
     #undef wxUSE_STATUSBAR
     #define wxUSE_STATUSBAR 0
+
+    #undef wxUSE_COLOURPICKERCTRL
+    #define wxUSE_COLOURPICKERCTRL 0
 #endif // __SMARTPHONE__
 
 #endif // _WX_MSW_WINCE_CHKCONF_H_