00001 /* 00002 * Copyright 2006 Sony Computer Entertainment Inc. 00003 * 00004 * Licensed under the MIT Open Source License, for details please see license.txt or the website 00005 * http://www.opensource.org/licenses/mit-license.php 00006 * 00007 */ 00008 00009 #ifndef __DAE_GCC_PLATFORM_H__ 00010 #define __DAE_GCC_PLATFORM_H__ 00011 00012 #define PLATFORM_INT8 char 00013 #define PLATFORM_INT16 short 00014 #define PLATFORM_INT32 int 00015 #define PLATFORM_INT64 long long 00016 #define PLATFORM_UINT8 unsigned char 00017 #define PLATFORM_UINT16 unsigned short 00018 #define PLATFORM_UINT32 unsigned int 00019 #define PLATFORM_UINT64 unsigned long long 00020 #define PLATFORM_FLOAT32 float 00021 #define PLATFORM_FLOAT64 double 00022 00023 #define DLLSPEC 00024 00025 #endif