Files
dosbox-x/vs2008/stdint.h

12 lines
326 B
C

#if defined(WIN32) /* MSVC does not have stdint.h */
typedef unsigned char uint8_t;
typedef signed char int8_t;
typedef unsigned short uint16_t;
typedef signed short int16_t;
typedef unsigned int uint32_t;
typedef signed int int32_t;
typedef unsigned __int64 uint64_t;
typedef signed __int64 int64_t;
#endif