basictypes.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // basictypes.h
  2. //
  3. // Copyright (C) 2001, Chris Laurel <claurel@shatters.net>
  4. //
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9. #ifndef _BASICTYPES_H_
  10. #define _BASICTYPES_H_
  11. typedef unsigned int   uint;
  12. // Fixed size types
  13. typedef int            int32;
  14. typedef unsigned int   uint32;
  15. typedef short          int16;
  16. typedef unsigned short uint16;
  17. typedef char           int8;
  18. typedef unsigned char  uint8;
  19. #ifdef _MSC_VER
  20. // MS Visual C++ does not include stdint.h
  21. typedef __int64          int64;
  22. typedef unsigned __int64 uint64;
  23. #define INT64_MAX  LLONG_MAX
  24. #define UINT64_MAX ULLONG_MAX
  25. #else
  26. #include <stdint.h>
  27. #include <limits>
  28. typedef          int64_t int64;
  29. typedef         uint64_t uint64;
  30. #define INT64_MAX 9223372036854775807LL
  31. #define UINT64_MAX 0xffffffffffffffffULL
  32. //#define INT64_MAX  std::numeric_limits<int64_t>::max()
  33. //#define UINT64_MAX std::numeric_limits<uint64_t>::max()
  34. #endif
  35. #endif // _BASICTYPES_H_