daeGCCPlatform.h 1.0 KB

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright 2006 Sony Computer Entertainment Inc.
  3. *
  4. * Licensed under the SCEA Shared Source License, Version 1.0 (the "License"); you may not use this
  5. * file except in compliance with the License. You may obtain a copy of the License at:
  6. * http://research.scea.com/scea_shared_source_license.html
  7. *
  8. * Unless required by applicable law or agreed to in writing, software distributed under the License
  9. * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  10. * implied. See the License for the specific language governing permissions and limitations under the
  11. * License.
  12. */
  13. #ifndef __DAE_GCC_PLATFORM_H__
  14. #define __DAE_GCC_PLATFORM_H__
  15. #define PLATFORM_INT8 char
  16. #define PLATFORM_INT16 short
  17. #define PLATFORM_INT32 int
  18. #define PLATFORM_INT64 long long
  19. #define PLATFORM_UINT8 unsigned char
  20. #define PLATFORM_UINT16 unsigned short
  21. #define PLATFORM_UINT32 unsigned int
  22. #define PLATFORM_UINT64 unsigned long long
  23. #define PLATFORM_FLOAT32 float
  24. #define PLATFORM_FLOAT64 double
  25. #define DLLSPEC
  26. #endif