comparison 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
comparison
equal deleted inserted replaced
6:f67d9be38ddf 7:d61550e2c001
1 #ifndef _PLAT_TYPES_H_
2 #define _PLAT_TYPES_H_
3
4 #ifdef _WIN32
5
6 typedef char int8_t;
7 typedef short int16_t;
8 typedef int int32_t;
9 typedef long long int64_t;
10 typedef unsigned char uint8_t;
11 typedef unsigned short uint16_t;
12 typedef unsigned int uint32_t;
13 typedef unsigned long long uint64_t;
14
15 #else
16 #include <stdint.h>
17 #endif
18
19 #endif //_PLAT_TYPES_H_