简体   繁体   中英

Error: IntellliSense: identifier “uint32” is undefined?

In visual studio I am getting this error.

Error: IntellliSense: identifier "uint32" is undefined?

please suggest me which file need to include?

If you are looking for uint32_t then you include stdint.h .

Otherwise, if you really are after uint32 , then that type is not a standard type and you need to include whichever header file declares it. Only you know that information.

I had a similar problem: I was including certain header files in the wrong order, thus certain windows types weren't defined for another windows header. If you have this, try re-arranging headers too.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM