summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNedeljko Babic <nbabic@mips.com>2012-02-25 11:23:03 +0100
committerNedeljko Babic <nbabic@mips.com>2012-04-03 15:30:17 +0200
commitc84e4158ad3b23cca4f524645297be0e4128e2e2 (patch)
tree6da175c3a6e3c0856a55d1fe9ca7d7b05e974846
parent89d861589936c9f0e8965fb4f6690ca074d1ccd0 (diff)
downloadtremor-c84e4158ad3b23cca4f524645297be0e4128e2e2.tar.gz
Add typedefs for WIN32_WCE
-rw-r--r--os_types.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/os_types.h b/os_types.h
index 8d444d6..b79b32a 100644
--- a/os_types.h
+++ b/os_types.h
@@ -32,7 +32,17 @@
#define _ogg_realloc realloc
#define _ogg_free free
-#ifdef _WIN32
+#if defined (_WIN32_WCE)
+
+ typedef unsigned short ogg_uint16_t;
+ typedef short ogg_int16_t;
+ typedef int ogg_int32_t;
+ typedef unsigned int ogg_uint32_t;
+ typedef __int64 ogg_int64_t;
+
+ #define inline
+
+#elif defined(_WIN32)
# ifndef __GNUC__
/* MSVC/Borland */