VC6中定义下面类型typedef long long int int64_t ;出现错误

VC6中定义下面类型typedef long long int int64_t ;出现错误

错误
error C2632: 'long' followed by 'long' is illegal

解决方法
typedef __int64 int64_t ;

 

你可能感兴趣的:(VC)