diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-06-07 21:10:18 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-06-07 21:10:18 +0200 |
commit | 6d7bff2476459049f4f554291a680e0f6003ea66 (patch) | |
tree | 4202e9f1cd843197648fec93b48a5bc88407dc2e /mmc_updater/depends/win32cpp/wcestddef.h | |
parent | 977e11ef8d6780b173ad5ca6d13e29e721d0c6a0 (diff) | |
download | MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.tar MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.tar.gz MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.tar.lz MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.tar.xz MultiMC-6d7bff2476459049f4f554291a680e0f6003ea66.zip |
GH-1060 remove updater code
Diffstat (limited to 'mmc_updater/depends/win32cpp/wcestddef.h')
-rw-r--r-- | mmc_updater/depends/win32cpp/wcestddef.h | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/mmc_updater/depends/win32cpp/wcestddef.h b/mmc_updater/depends/win32cpp/wcestddef.h deleted file mode 100644 index f7b22833..00000000 --- a/mmc_updater/depends/win32cpp/wcestddef.h +++ /dev/null @@ -1,58 +0,0 @@ - -#pragma once - -#pragma comment(linker, "/nodefaultlib:libc.lib") -#pragma comment(linker, "/nodefaultlib:libcd.lib") - - -#include <ceconfig.h> -#if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP) - #define SHELL_AYGSHELL -#endif - -#ifdef _CE_DCOM - #define _ATL_APARTMENT_THREADED -#endif - -#if defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP) - #ifndef _DEVICE_RESOLUTION_AWARE - #define _DEVICE_RESOLUTION_AWARE - #endif -#endif - - -#if _WIN32_WCE == 420 || _WIN32_WCE == 0x420 - // For Pocket PC 2003 - #pragma comment(lib, "ccrtrtti.lib") -#endif - -#if _MSC_VER >= 1300 - - // NOTE - this value is not strongly correlated to the Windows CE OS version being targeted - #undef WINVER - #define WINVER _WIN32_WCE - - #ifdef _DEVICE_RESOLUTION_AWARE - #include "DeviceResolutionAware.h" - #endif - - #if _WIN32_WCE < 0x500 && ( defined(WIN32_PLATFORM_PSPC) || defined(WIN32_PLATFORM_WFSP) ) - #ifdef _X86_ - #if defined(_DEBUG) - #pragma comment(lib, "libcmtx86d.lib") - #else - #pragma comment(lib, "libcmtx86.lib") - #endif - #endif - #endif - - #include <altcecrt.h> - -#endif// _MSC_VER >= 1300 - -#ifdef SHELL_AYGSHELL - #include <aygshell.h> - #pragma comment(lib, "aygshell.lib") -#endif // SHELL_AYGSHELL - -// TODO: reference additional headers your program requires here |