abu
7th March 2007, 10:47
Hi, the current SDK uses __time64_t in ml.h. But in MSVC 6 this is not defined in any header (not in time.h, where it is supposed to be.
I had to add this to ml.h to calm down the compiler, after the #include <time.h> line (~line 460)
#ifndef _TIME64_T_DEFINED
typedef __int64 __time64_t; /* 64-bit time value */
#define _TIME64_T_DEFINED
#endif
I had to add this to ml.h to calm down the compiler, after the #include <time.h> line (~line 460)
#ifndef _TIME64_T_DEFINED
typedef __int64 __time64_t; /* 64-bit time value */
#define _TIME64_T_DEFINED
#endif