source: 3DVCSoftware/branches/HTM-15.2-dev/compat/msvc/stdint.h @ 1362

Last change on this file since 1362 was 1362, checked in by tech, 9 years ago

Align macros

  • Property svn:eol-style set to native
File size: 511 bytes
Line 
1#pragma once
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
8
9/* a minimal set of C99 types for use with MSVC */
10
11typedef signed char int8_t;
12typedef short int int16_t;
13typedef int int32_t;
14typedef __int64 int64_t;
15
16typedef unsigned char uint8_t;
17typedef unsigned short int uint16_t;
18typedef unsigned int uint32_t;
19typedef unsigned __int64 uint64_t;
Note: See TracBrowser for help on using the repository browser.