Fix for VS 7 or lower not having ULL postfix for types
This commit is contained in:
parent
cfa5932321
commit
4e123ec1b1
|
@ -56,8 +56,12 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#if defined(_MSC_VER) && _MSC_VER <= 1300
|
||||||
|
# define EPOC_TIME (116444736000000000)
|
||||||
|
#else
|
||||||
|
# define EPOC_TIME (116444736000000000ULL)
|
||||||
|
#endif
|
||||||
|
|
||||||
#define EPOC_TIME (116444736000000000ULL)
|
|
||||||
|
|
||||||
struct ustat {
|
struct ustat {
|
||||||
int64_t st_atime;
|
int64_t st_atime;
|
||||||
|
|
Loading…
Reference in New Issue