diff -r b6aa150091ee -r eb3d0111f868 symbian-qemu-0.9.1-12/model-libraries/commoninc/platformtypes.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/symbian-qemu-0.9.1-12/model-libraries/commoninc/platformtypes.h Thu May 27 00:38:17 2010 +0300 @@ -0,0 +1,19 @@ +#ifndef PLATFORMTYPES_H +#define PLATFORMTYPES_H + +// TODO: We should have a proper type definition file created common for standalone model libraries +typedef signed __int8 int8_t; +typedef signed __int16 int16_t; +typedef signed __int32 int32_t; +typedef signed __int64 int64_t; +typedef unsigned __int8 uint8_t; +typedef unsigned __int8 u_int8_t; +typedef unsigned __int16 uint16_t; +typedef unsigned __int16 u_int16_t; +typedef unsigned __int32 uint32_t; +typedef unsigned __int32 u_int32_t; +typedef unsigned __int64 uint64_t; +typedef unsigned __int64 u_int64_t; +typedef unsigned char byte_t; + +#endif // PLATFORMTYPES_H