daeGCCPlatform.h 640 B

12345678910111213141516171819202122232425
  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. #ifndef __DAE_GCC_PLATFORM_H__
  9. #define __DAE_GCC_PLATFORM_H__
  10. #define PLATFORM_INT8 char
  11. #define PLATFORM_INT16 short
  12. #define PLATFORM_INT32 int
  13. #define PLATFORM_INT64 long long
  14. #define PLATFORM_UINT8 unsigned char
  15. #define PLATFORM_UINT16 unsigned short
  16. #define PLATFORM_UINT32 unsigned int
  17. #define PLATFORM_UINT64 unsigned long long
  18. #define PLATFORM_FLOAT32 float
  19. #define PLATFORM_FLOAT64 double
  20. #define DLLSPEC
  21. #endif