Home | History | Annotate | Download | only in dae
      1 /*
      2 * Copyright 2006 Sony Computer Entertainment Inc.
      3 *
      4 * Licensed under the MIT Open Source License, for details please see license.txt or the website
      5 * http://www.opensource.org/licenses/mit-license.php
      6 *
      7 */
      8 
      9 #ifndef __DAE_GCC_PLATFORM_H__
     10 #define __DAE_GCC_PLATFORM_H__
     11 
     12 #define PLATFORM_INT8	char
     13 #define PLATFORM_INT16	short
     14 #define PLATFORM_INT32	int
     15 #define PLATFORM_INT64	long long
     16 #define PLATFORM_UINT8	unsigned char
     17 #define PLATFORM_UINT16 unsigned short
     18 #define PLATFORM_UINT32 unsigned int
     19 #define PLATFORM_UINT64 unsigned long long
     20 #define PLATFORM_FLOAT32 float
     21 #define PLATFORM_FLOAT64 double
     22 
     23 #define DLLSPEC
     24 
     25 #endif
     26