inttypes.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:0k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #pragma once
  2. typedef signed char int8_t;
  3. typedef signed short int16_t;
  4. typedef signed int int32_t;
  5. #ifdef ARCH_X86
  6. typedef signed long long int64_t;
  7. #endif
  8. typedef unsigned char uint8_t;
  9. typedef unsigned short uint16_t;
  10. typedef unsigned int uint32_t;
  11. #ifdef ARCH_X86
  12. typedef unsigned long long uint64_t;
  13. #endif