Changeset 56
- Timestamp:
- 05/29/13 22:24:25 (13 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 1 edited
-
nv/common.hh (modified) (1 diff)
-
nv/lua/lua_aux.hh (added)
-
src/lua/lua_aux.cc (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/nv/common.hh
r55 r56 120 120 namespace nv 121 121 { 122 class object; 122 123 123 // Typedefs for fixed size types.124 typedef signed char sint8;125 typedef signed short sint16;126 typedef signed long sint32;124 // Typedefs for fixed size types. 125 typedef signed char sint8; 126 typedef signed short sint16; 127 typedef signed long sint32; 127 128 #if NV_COMPILER == NV_MSVC 128 typedef signed __int64 sint64;129 typedef signed __int64 sint64; 129 130 #else 130 typedef signed long long sint64;131 typedef signed long long sint64; 131 132 #endif 132 133 133 typedef unsigned char uint8;134 typedef unsigned short uint16;135 typedef unsigned long uint32;134 typedef unsigned char uint8; 135 typedef unsigned short uint16; 136 typedef unsigned long uint32; 136 137 #if NV_COMPILER == NV_MSVC 137 typedef unsigned __int64 uint64;138 typedef unsigned __int64 uint64; 138 139 #else 139 typedef unsigned long long uint64;140 typedef unsigned long long uint64; 140 141 #endif 141 142 142 typedef unsigned char char8;143 typedef unsigned short char16;144 typedef unsigned long char32;143 typedef unsigned char char8; 144 typedef unsigned short char16; 145 typedef unsigned long char32; 145 146 146 typedef float f32;147 typedef double f64;147 typedef float f32; 148 typedef double f64; 148 149 149 typedef uint64 uid;150 typedef uint64 uid; 150 151 151 152 } // namespace nv
Note: See TracChangeset
for help on using the changeset viewer.
