Last change
on this file since 64 was
2,
checked in by hhi, 13 years ago
|
inital import
|
-
Property svn:eol-style set to
native
|
File size:
302 bytes
|
Rev | Line | |
---|
[2] | 1 | #pragma once |
---|
| 2 | |
---|
| 3 | /* a minimal set of C99 types for use with MSVC */ |
---|
| 4 | |
---|
| 5 | typedef signed char int8_t; |
---|
| 6 | typedef short int int16_t; |
---|
| 7 | typedef int int32_t; |
---|
| 8 | typedef __int64 int64_t; |
---|
| 9 | |
---|
| 10 | typedef unsigned char uint8_t; |
---|
| 11 | typedef unsigned short int uint16_t; |
---|
| 12 | typedef unsigned int uint32_t; |
---|
| 13 | typedef unsigned __int64 uint64_t; |
---|
Note: See
TracBrowser for help on using the repository browser.