<i id='aBN08'><tr id='aBN08'><dt id='aBN08'><q id='aBN08'><span id='aBN08'><b id='aBN08'><form id='aBN08'><ins id='aBN08'></ins><ul id='aBN08'></ul><sub id='aBN08'></sub></form><legend id='aBN08'></legend><bdo id='aBN08'><pre id='aBN08'><center id='aBN08'></center></pre></bdo></b><th id='aBN08'></th></span></q></dt></tr></i><div id='aBN08'><tfoot id='aBN08'></tfoot><dl id='aBN08'><fieldset id='aBN08'></fieldset></dl></div>

  1. <small id='aBN08'></small><noframes id='aBN08'>

      <legend id='aBN08'><style id='aBN08'><dir id='aBN08'><q id='aBN08'></q></dir></style></legend>
      <tfoot id='aBN08'></tfoot>

        <bdo id='aBN08'></bdo><ul id='aBN08'></ul>

    1. 'uint32_t' 标识符未找到错误

      时间:2023-10-05
      <i id='pCAdg'><tr id='pCAdg'><dt id='pCAdg'><q id='pCAdg'><span id='pCAdg'><b id='pCAdg'><form id='pCAdg'><ins id='pCAdg'></ins><ul id='pCAdg'></ul><sub id='pCAdg'></sub></form><legend id='pCAdg'></legend><bdo id='pCAdg'><pre id='pCAdg'><center id='pCAdg'></center></pre></bdo></b><th id='pCAdg'></th></span></q></dt></tr></i><div id='pCAdg'><tfoot id='pCAdg'></tfoot><dl id='pCAdg'><fieldset id='pCAdg'></fieldset></dl></div>

        <tfoot id='pCAdg'></tfoot>

          • <bdo id='pCAdg'></bdo><ul id='pCAdg'></ul>

              <tbody id='pCAdg'></tbody>
              <legend id='pCAdg'><style id='pCAdg'><dir id='pCAdg'><q id='pCAdg'></q></dir></style></legend>

                <small id='pCAdg'></small><noframes id='pCAdg'>

                本文介绍了'uint32_t' 标识符未找到错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我正在将代码从 Linux C 移植到适用于 Windows 的 Visual C++.

                I'm porting code from Linux C to Visual C++ for windows.

                Visual C++ 不知道 #include 所以我把它注释掉了.

                Visual C++ doesn't know #include <stdint.h> so I commented it out.

                后来,我发现了很多 'uint32_t': identifier not found 错误.怎么解决?

                Later, I found a lot of those 'uint32_t': identifier not found errors. How can it be solved?

                推荐答案

                该类型定义在 C 头文件 中,它是 C++11 标准的一部分,但不是C++03 中的标准.根据标题中的维基百科页面,它直到 VS2010 才随 Visual Studio 一起发布.

                This type is defined in the C header <stdint.h> which is part of the C++11 standard but not standard in C++03. According to the Wikipedia page on the header, it hasn't shipped with Visual Studio until VS2010.

                与此同时,您可能可以通过添加映射 typedef 来伪造自己的标头版本library/29dh1w7z.aspx" rel="noreferrer">Microsoft 的自定义整数类型 到 C 期望的类型.例如:

                In the meantime, you could probably fake up your own version of the header by adding typedefs that map Microsoft's custom integer types to the types expected by C. For example:

                typedef __int32 int32_t;
                typedef unsigned __int32 uint32_t;
                /* ... etc. ... */
                

                希望这有帮助!

                这篇关于'uint32_t' 标识符未找到错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:模块对于 SAFESEH 图像 C++ 不安全 下一篇:链接器生成的 .map 文件有什么用?

                相关文章

                最新文章

                <legend id='Kg4sC'><style id='Kg4sC'><dir id='Kg4sC'><q id='Kg4sC'></q></dir></style></legend>

              1. <small id='Kg4sC'></small><noframes id='Kg4sC'>

                <tfoot id='Kg4sC'></tfoot>

                    <bdo id='Kg4sC'></bdo><ul id='Kg4sC'></ul>

                  1. <i id='Kg4sC'><tr id='Kg4sC'><dt id='Kg4sC'><q id='Kg4sC'><span id='Kg4sC'><b id='Kg4sC'><form id='Kg4sC'><ins id='Kg4sC'></ins><ul id='Kg4sC'></ul><sub id='Kg4sC'></sub></form><legend id='Kg4sC'></legend><bdo id='Kg4sC'><pre id='Kg4sC'><center id='Kg4sC'></center></pre></bdo></b><th id='Kg4sC'></th></span></q></dt></tr></i><div id='Kg4sC'><tfoot id='Kg4sC'></tfoot><dl id='Kg4sC'><fieldset id='Kg4sC'></fieldset></dl></div>