+// Standard SDK lacks a few things, forcefully disable them
+#ifdef WCE_PLATFORM_STANDARDSDK
+ // no shell functions support
+ #undef wxUSE_STDPATHS
+ #define wxUSE_STDPATHS 0
+#endif // WCE_PLATFORM_STANDARDSDK
+
+// not sure if this is supported by eVC but VC8 SDK lacks the tooltips control
+// related declarations
+#if defined(__VISUALC__) && __VISUALC__ >= 1400
+ #undef wxUSE_TOOLTIPS
+ #define wxUSE_TOOLTIPS 0
+#endif