X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/dcaf7c6e3b084bc59ef162dcc22175bcab60efe4..939197fe47148304d874496e954fbc5ddca722be:/include/wx/msw/wince/libraries.h?ds=sidebyside diff --git a/include/wx/msw/wince/libraries.h b/include/wx/msw/wince/libraries.h index 67bca56aea..953e356b84 100644 --- a/include/wx/msw/wince/libraries.h +++ b/include/wx/msw/wince/libraries.h @@ -12,8 +12,8 @@ #ifndef _WX_LIBRARIES_H_ #define _WX_LIBRARIES_H_ -// NB: According to Microsoft, it is up to the OEM to decide whether -// some of libraries will be included in the system or not. For example, +// NB: According to Microsoft, it is up to the OEM to decide whether +// some of libraries will be included in the system or not. For example, // MS' STANDARDSDK does not include cyshell.lib and aygshell.lib, while // Pocket PC 2003 SDK does. We depend on some symbols that are in these // libraries in some SDKs and in different libs in others. Fortunately we @@ -21,12 +21,15 @@ // VC++'s #pragma to link against the libraries conditionally, instead of // including libraries in project files. -#ifdef __VISUALC__ - -#if _WIN32_WCE >= 400 +#if defined(__VISUALC__) && defined(__WXWINCE__) +#if (_WIN32_WCE >= 400) || defined(__POCKETPC__) #pragma comment(lib,"commdlg.lib") #endif +#if (_WIN32_WCE >= 400) && !defined(wxNO_RTTI) + #pragma comment(lib,"ccrtrtti.lib") +#endif + #if defined(__WINCE_STANDARDSDK__) // DoDragDrop: #pragma comment(lib,"olece400.lib") @@ -47,6 +50,6 @@ #error "Unknown SDK, please fill-in missing pieces" #endif -#endif // __VISUALC__ +#endif // __VISUALC__ && __WXWINCE__ #endif // _WX_LIBRARIES_H_