+// 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
+
+// there is no support for balloon taskbar icons
+#undef wxUSE_TASKBARICON_BALLOONS
+#define wxUSE_TASKBARICON_BALLOONS 0
+
+// not sure if this is supported by eVC but VC8 SDK lacks the tooltips control
+// related declarations
+#if wxCHECK_VISUALC_VERSION(8)
+ #undef wxUSE_TOOLTIPS
+ #define wxUSE_TOOLTIPS 0
+#endif