What's the equivalent of int64_t, int_least16_t & uint8_t in Visual C++ 2008? [duplicate]
Possible Duplicate:
What's the equivalent of int32_t in Visual C++?
What's the equivalent of int64_t , int_least16_t and uint8_t in Visual C++ 2008?
- int64_t: __int64
- uint8_t: unsigned __int8
- int_least16_t: __int16
int64_t __int64
int_least16_t short int
uint8_t unsigned char
精彩评论