athena/include/win32_largefilewrapper.h

17 lines
313 B
C
Raw Normal View History

2014-05-15 05:42:20 +00:00
#ifndef WIN32_LARGEFILEWRAPPER_H
#define WIN32_LARGEFILEWRAPPER_H
2014-06-03 03:09:40 +00:00
#if defined(_WIN32) && defined(_MSC_VER)
2014-05-15 05:42:20 +00:00
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
int fseeko64(FILE* fp, off64_t offset, int whence);
int ftello64(FILE* fp);
#ifdef __cplusplus
}
#endif
#endif
#endif // WIN32_LARGEFILEWRAPPER_H