stdint_win32.h 206 B

1234567891011
  1. #ifndef _STDINT_WIN32_H_
  2. #define _STDINT_WIN32_H_
  3. typedef unsigned short uint16_t;
  4. typedef unsigned char uint8_t;
  5. typedef short int16_t;
  6. typedef char int8_t;
  7. typedef unsigned int size_t;
  8. #endif