]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/wince/libraries.h
allow passing temporary functors to Bind() too (closes #10653)
[wxWidgets.git] / include / wx / msw / wince / libraries.h
index 22e5347fdfd9be837cf1182fb5859e3b2ca20e37..efda4d697bd39bee4562141e814d4a7cec38dce3 100644 (file)
 #endif
 #endif
 
-#if (_WIN32_WCE >= 400) && !defined(wxNO_RTTI)
+// this library is only available for PocketPC targets using recent SDK and is
+// needed for RTTI support
+#if (_WIN32_WCE >= 400) && !defined(__WINCE_NET__) && !defined(wxNO_RTTI)
     #pragma comment(lib,"ccrtrtti.lib")
 #endif
 
 #if defined(__WINCE_STANDARDSDK__)
     // DoDragDrop:
     #pragma comment(lib,"olece400.lib")
-#elif defined(__POCKETPC__)
-    // PocketPC build:
-    // DoDragDrop:
+#elif defined(__POCKETPC__) || defined(__SMARTPHONE__) || defined(__WINCE_NET__)
     #pragma comment(lib,"ceshell.lib")
-
     #pragma comment(lib,"aygshell.lib")
 #elif defined(__HANDHELDPC__)
     // Handheld PC builds. Maybe WindowsCE.NET 4.X needs another symbol.
     #pragma comment(lib,"ceshell.lib")
-#elif defined(__SMARTPHONE__)
-    // Smartphone build:
-    #pragma comment(lib,"ceshell.lib")
-    #pragma comment(lib,"aygshell.lib")
 #else
     #error "Unknown SDK, please fill-in missing pieces"
 #endif