Possible Duplicate:
Difference between different integer types
What is the difference between uint32 and uint32_t in C/C++?
Are they OS-dependent?
In which case should I use one or another?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
uint32_tis standard,uint32is not. That is, if you include<inttypes.h>or<stdint.h>, you will get a definition ofuint32_t.uint32is a typedef in some local code base, but you should not expect it to exist unless you define it yourself. And defining it yourself is a bad idea.