Reputation: 41
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
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
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