stdtypes.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file stdtypes.h
  3.  * @brief Basic type declarations for cross platform compatibility.
  4.  *
  5.  * $LicenseInfo:firstyear=2000&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2000-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_STDTYPES_H
  33. #define LL_STDTYPES_H
  34. #include <cfloat>
  35. #include <climits>
  36. typedef signed char S8;
  37. typedef unsigned char U8;
  38. typedef signed short S16;
  39. typedef unsigned short U16;
  40. typedef signed int S32;
  41. typedef unsigned int U32;
  42. #if LL_WINDOWS
  43. // Windows wchar_t is 16-bit
  44. typedef U32 llwchar;
  45. #else
  46. typedef wchar_t llwchar;
  47. #endif
  48. #if LL_WINDOWS
  49. typedef signed __int64 S64;
  50. // probably should be 'hyper' or similiar
  51. #define S64L(a) (a)
  52. typedef unsigned __int64 U64;
  53. #define U64L(a) (a)
  54. #else
  55. typedef long long int S64;
  56. typedef long long unsigned int U64;
  57. #if LL_DARWIN || LL_LINUX || LL_SOLARIS
  58. #define S64L(a) (a##LL)
  59. #define U64L(a) (a##ULL)
  60. #endif
  61. #endif
  62. typedef float F32;
  63. typedef double F64;
  64. typedef S32 BOOL;
  65. typedef U8 KEY;
  66. typedef U32 MASK;
  67. typedef U32              TPACKETID;
  68. // Use #define instead of consts to avoid conversion headaches
  69. #define S8_MAX (SCHAR_MAX)
  70. #define U8_MAX (UCHAR_MAX)
  71. #define S16_MAX (SHRT_MAX)
  72. #define U16_MAX (USHRT_MAX)
  73. #define S32_MAX (INT_MAX)
  74. #define U32_MAX (UINT_MAX)
  75. #define F32_MAX (FLT_MAX)
  76. #define F64_MAX (DBL_MAX)
  77. #define S8_MIN (SCHAR_MIN)
  78. #define U8_MIN (0)
  79. #define S16_MIN (SHRT_MIN)
  80. #define U16_MIN (0)
  81. #define S32_MIN (INT_MIN)
  82. #define U32_MIN (0)
  83. #define F32_MIN (FLT_MIN)
  84. #define F64_MIN (DBL_MIN)
  85. #ifndef TRUE
  86. #define TRUE (1)
  87. #endif
  88. #ifndef FALSE
  89. #define FALSE (0)
  90. #endif
  91. #ifndef NULL
  92. #define NULL (0)
  93. #endif
  94. typedef U8 LLPCode;
  95. #define LL_ARRAY_SIZE( _kArray ) ( sizeof( (_kArray) ) / sizeof( _kArray[0] ) )
  96. #if LL_LINUX && __GNUC__ <= 2
  97. typedef int intptr_t;
  98. #endif
  99. #endif