Go to the documentation of this file.
11 #define WINVER _WIN32_WCE
17 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
20 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
23 #define _ATL_APARTMENT_THREADED
30 #if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)
31 #define SHELL_AYGSHELL
49 #if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP)
50 #ifndef _DEVICE_RESOLUTION_AWARE
51 #define _DEVICE_RESOLUTION_AWARE
55 #ifdef _DEVICE_RESOLUTION_AWARE
56 #include "DeviceResolutionAware.h"
60 #if (_WIN32_WCE < 0x500) && ( defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP) )
61 #pragma comment(lib, "ccrtrtti.lib")
64 #pragma comment(lib, "libcmtx86d.lib")
66 #pragma comment(lib, "libcmtx86.lib")
72 #define DEPRECATED(func) func __attribute__ ((deprecated))
73 #elif defined(_MSC_VER)
74 #define DEPRECATED(func) __declspec(deprecated) func
76 #pragma message("WARNING: You need to implement DEPRECATED for this compiler")
77 #define DEPRECATED(func) func