Fix for VS 7 or lower not having ULL postfix for types

This commit is contained in:
Bill Hoffman 2009-10-30 16:36:46 -04:00
parent cfa5932321
commit 4e123ec1b1
1 changed files with 5 additions and 1 deletions

View File

@ -56,8 +56,12 @@
#include <stdlib.h>
#include <wchar.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 {
int64_t st_atime;