error C2065: “uint8_t”: 未声明的标识符

  1. 参考: http://blog.csdn.net/chenxin_130/article/details/8580706
  2. 该错误由于uint32_t与uint8_t未定义造成,加入定义后编译成功。
  3. #if _MSC_VER < 1600 // Visual Studio 2008 and older doesn't have stdint.h...  
  4. typedef __int64 int64_t;  
  5. typedef unsigned __int64 uint64_t;  
  6. typedef unsigned __int32 uint32_t;  
  7. typedef unsigned __int16 uint16_t;  
  8. typedef unsigned __int8 uint8_t;  
  9. #else  
  10. #include   // 2010之前的版本的安装目录下没有该文件,
  11. #endif  

vs2010添加 stdint.h 就可以

VC2008 error :uint8_t , uint16_t ……未能识别,没有定义

你可能感兴趣的:(VC)