Closed thesby closed 7 years ago
the vc9.0 not include "stdint.h", copy it from the high version or download it from the Internet.
Yes, thank you. I just use
#ifdef _MSC_VER
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#else
#include <stdint.h>
#endif
to replace the #include<stdint.h>
and use
#define bool int
#define true 1
#define false 0
to replace the #include<stdbool.h>
.
The problem is solved.