diff runtime/plat_types.h @ 7:d61550e2c001

Added current work on new runtime
author Mike Pavone <pavone@retrodev.com>
date Wed, 13 May 2009 00:47:40 -0400
parents
children a24eb366195c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/runtime/plat_types.h	Wed May 13 00:47:40 2009 -0400
@@ -0,0 +1,19 @@
+#ifndef _PLAT_TYPES_H_
+#define _PLAT_TYPES_H_
+
+#ifdef _WIN32
+
+typedef char int8_t;
+typedef short int16_t;
+typedef int int32_t;
+typedef long long int64_t;
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;
+typedef unsigned long long uint64_t;
+
+#else
+#include <stdint.h>
+#endif
+
+#endif //_PLAT_TYPES_H_