一、资源简介 msinttypes-r26.zip 是Google为微软编译器(MSVC)提供的C99标准头文件 `stdint.h` 和 `stddef.h` 的实现库,专门解决旧版Visual Studio(如VS2008)因缺少 `stdint.h` 导致的编译错误: ```cpp fatal error C1083: 无法打开包括文件: “stdint.h”: No such file or directory ``` 适用于 **VS2003~VS2015**,完美支持C99定义的精确宽度整数类型(如 `int8_t`、`uint32_t`),确保跨平台代码在Windows平台上的兼容性。 二、核心功能 1. 修复C99头文件缺失: - 提供完整的 `stdint.h`,包含62个C99标准整数类型(如 `int_least16_t`、`uint_fast64_t`)。 - 补充 `stddef.h` 中缺失的 `offsetof` 宏正确实现。 2. 微软平台适配: - 通过条件编译兼容不同MSVC版本(`_MSC_VER` 宏判断)。 - 映射Windows原生类型(如 `size_t` 对应 `unsigned int`,64位系统自动适配 `__int64`)。 3. 零依赖快速部署**:直接复制头文件到VSinclude目录即可使用,无需额外编译。
2025-12-27 22:25:01 5KB vs2008编译
1
stdint.h/inttypes.h源码,VS编译时可能需要。比如吾用VS2010编译JDK12,就必须这个。
2022-02-28 18:07:43 5KB VS stdint.h inttypes.h
1
fatal error C1083: 无法打开包括文件:“stdint.h”: No such file or directory stdint.h是c99标准的头文件,vc不支持,所以肯定会提示“No such file or directory”的。 解决办法: 解压后会得到三个文件,把inttypes.h和stdint.h放到vc的include目录就可以了。 我安装的是VS2008,安装到的默认位置,因此include的路径就是: C:\Program Files\Microsoft Visual Studio 9.0\VC\include 通过以上方法,成功解决编译错误。
2022-01-19 16:31:22 7KB stdint;intty
1
让VS2008支持C99标准。
2021-12-31 11:03:43 7KB msinttypes
1
stdint.h是c99标准的头文件,vc不支持,所以肯定会提示“No such file or directory”的。 去googlecode下载http://msinttypes.googlecode.com/files/msinttypes-r26.zip TG网络限制,上传此,以备用。
2021-09-24 13:16:27 7KB msinttypes
1
解决ffmpeg编译提示fatel error C1083:无法打开包括文件:stdint.h 解压后会得到三个文件,把inttypes.h和stdint.h放到vc的include目录就可以了。
2021-07-05 11:28:44 7KB ffmpeg stdint.h
1
解决 python安装: 'stdint.h': No such file or directory 报错信息: fatal error C1083: Cannot open in clude file: 'stdint.h': No such file or directory
2019-12-21 20:32:53 5KB stdint.h inttypes.h
1
stdint.h是c99标准的头文件,vc不支持,所以肯定会提示“No such file or directory”的。 去googlecode下载http://msinttypes.googlecode.com/files/msinttypes-r26.zip TG网络限制,上传此,以备用。
2019-12-21 18:48:41 7KB inttypes.h stdint.h
1
用于解决错误: fatal error C1083: Cannot open include file: 'stdint.h': No such file or directory
2019-12-21 18:48:03 7KB inttypes.h stdint.h
1