aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorCameron Cawley2019-11-10 16:34:25 +0000
committerEugene Sandulenko2019-11-17 22:33:56 +0100
commitf2b9f7bb76c041825bef1dcee3abf17d923898da (patch)
tree9ead87f005a086b6c1cb2cfe4e81d846e3e691dc /common
parentc5a5e0f68a8d740f37f234e773988e8f58273466 (diff)
downloadscummvm-rg350-f2b9f7bb76c041825bef1dcee3abf17d923898da.tar.gz
scummvm-rg350-f2b9f7bb76c041825bef1dcee3abf17d923898da.tar.bz2
scummvm-rg350-f2b9f7bb76c041825bef1dcee3abf17d923898da.zip
BACKENDS: Remove the Windows CE port
Diffstat (limited to 'common')
-rw-r--r--common/inttypes.h5
-rw-r--r--common/scummsys.h4
2 files changed, 2 insertions, 7 deletions
diff --git a/common/inttypes.h b/common/inttypes.h
index 88efa6f99e..7a39a3d8b1 100644
--- a/common/inttypes.h
+++ b/common/inttypes.h
@@ -27,11 +27,6 @@
typedef uint8 uint8_t;
typedef uint16 uint16_t;
typedef uint32 uint32_t;
-#elif defined(_WIN32_WCE)
- typedef signed char int8_t;
- typedef signed short int16_t;
- typedef unsigned char uint8_t;
- typedef unsigned short uint16_t;
#elif defined(_MSC_VER) || defined (__SYMBIAN32__)
typedef signed char int8_t;
typedef signed short int16_t;
diff --git a/common/scummsys.h b/common/scummsys.h
index a9512f4b3e..979852047e 100644
--- a/common/scummsys.h
+++ b/common/scummsys.h
@@ -279,7 +279,7 @@
#define SCUMM_LITTLE_ENDIAN
#define SCUMM_NEED_ALIGNMENT
- #elif defined(_WIN32_WCE) || defined(_MSC_VER) || defined(__MINGW32__)
+ #elif defined(_MSC_VER) || defined(__MINGW32__)
#define SCUMM_LITTLE_ENDIAN
@@ -364,7 +364,7 @@
#endif
#ifndef PLUGIN_EXPORT
- #if defined(_MSC_VER) || defined(_WIN32_WCE) || defined(__MINGW32__)
+ #if defined(_MSC_VER) || defined(__MINGW32__)
#define PLUGIN_EXPORT __declspec(dllexport)
#else
#define PLUGIN_EXPORT