mirror of https://github.com/libAthena/athena.git
17 lines
313 B
C
17 lines
313 B
C
#ifndef WIN32_LARGEFILEWRAPPER_H
|
|
#define WIN32_LARGEFILEWRAPPER_H
|
|
|
|
#if defined(_WIN32) && defined(_MSC_VER)
|
|
#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
|