X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b58bfecd8bbcef4a35bff61ed10d9913962891f..88899f6b030eec7747621619507d878c3cfed22e:/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 ff6b6ac96d..b03e41a9ba 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 @@ -23,13 +23,25 @@ #ifdef __VISUALC__ -#if defined(WCE_PLATFORM_STANDARDSDK) +#if _WIN32_WCE >= 400 + #pragma comment(lib,"commdlg.lib") +#endif + +#if defined(__WINCE_STANDARDSDK__) // DoDragDrop: #pragma comment(lib,"olece400.lib") -#elif defined(WIN32_PLATFORM_PSPC) +#elif defined(__POCKETPC__) + // PocketPC build: // DoDragDrop: #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"