]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wince/libraries.h
made wxTLW::SetIcon() non-virtual, it was already implemented in terms of
[wxWidgets.git] / include / wx / msw / wince / libraries.h
index b03e41a9ba6d20dae4b030389a9ba74835fc7990..22e5347fdfd9be837cf1182fb5859e3b2ca20e37 100644 (file)
 //     VC++'s #pragma to link against the libraries conditionally, instead of
 //     including libraries in project files.
 
-#ifdef __VISUALC__
+#if defined(__VISUALC__) && defined(__WXWINCE__)
 
-#if _WIN32_WCE >= 400
+#if (_WIN32_WCE >= 400) || defined(__POCKETPC__)
+    // No commdlg.lib in Mobile 5.0 Smartphone
+#if !(defined(__SMARTPHONE__) && _WIN32_WCE >= 1200)
     #pragma comment(lib,"commdlg.lib")
 #endif
+#endif
+
+#if (_WIN32_WCE >= 400) && !defined(wxNO_RTTI)
+    #pragma comment(lib,"ccrtrtti.lib")
+#endif
 
 #if defined(__WINCE_STANDARDSDK__)
     // DoDragDrop:
@@ -47,6 +54,6 @@
     #error "Unknown SDK, please fill-in missing pieces"
 #endif
 
-#endif // __VISUALC__
+#endif // __VISUALC__ && __WXWINCE__
 
 #endif // _WX_LIBRARIES_H_