source: SHVCSoftware/branches/SHM-3.0-dev/compat/msvc/stdint.h @ 323

Last change on this file since 323 was 313, checked in by suehring, 11 years ago

set svn:eol-style=native property on all source files to do proper
automatic line break conversion on check-out and check-in

  • Property svn:eol-style set to native
File size: 302 bytes
Line 
1#pragma once
2
3/* a minimal set of C99 types for use with MSVC */
4
5typedef signed char int8_t;
6typedef short int int16_t;
7typedef int int32_t;
8typedef __int64 int64_t;
9
10typedef unsigned char uint8_t;
11typedef unsigned short int uint16_t;
12typedef unsigned int uint32_t;
13typedef unsigned __int64 uint64_t;
Note: See TracBrowser for help on using the repository browser.