Last change
on this file was
1386,
checked in by tech, 9 years ago
|
Merged 15.1-dev1@1381.
|
-
Property svn:eol-style set to
native
|
File size:
511 bytes
|
Rev | Line | |
---|
[2] | 1 | #pragma once |
---|
[1386] | 2 | #ifndef _MSC_VER |
---|
| 3 | #error local C99 type definition should only be used in Visual C++ before 2010 |
---|
| 4 | #endif |
---|
| 5 | #if _MSC_VER > 1500 |
---|
| 6 | #error local C99 type definition should only be used in Visual C++ before 2010 |
---|
| 7 | #endif |
---|
[2] | 8 | |
---|
| 9 | /* a minimal set of C99 types for use with MSVC */ |
---|
| 10 | |
---|
| 11 | typedef signed char int8_t; |
---|
| 12 | typedef short int int16_t; |
---|
| 13 | typedef int int32_t; |
---|
| 14 | typedef __int64 int64_t; |
---|
| 15 | |
---|
| 16 | typedef unsigned char uint8_t; |
---|
| 17 | typedef unsigned short int uint16_t; |
---|
| 18 | typedef unsigned int uint32_t; |
---|
| 19 | typedef unsigned __int64 uint64_t; |
---|
Note: See
TracBrowser for help on using the repository browser.