Sivaram Kakarla
Sivaram Kakarla

Reputation: 41

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?

Upvotes: 2

Views: 11348

Answers (2)

Jordan
Jordan

Reputation: 440

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.

Upvotes: 0

David Heffernan
David Heffernan

Reputation: 612794

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.

Upvotes: 7

Related Questions