mirror of
https://github.com/libAthena/athena.git
synced 2025-07-06 21:26:11 +00:00
15 lines
240 B
C
15 lines
240 B
C
#include "win32_largefilewrapper.h"
|
|
#include <stdio.h>
|
|
|
|
#if defined(_MSC_VER)
|
|
int fseeko64(FILE* fp, off64_t offset, int whence)
|
|
{
|
|
return _fseeki64(fp, offset, whence);
|
|
}
|
|
|
|
off64_t ftello64(FILE* fp)
|
|
{
|
|
return _ftelli64(fp);
|
|
}
|
|
#endif
|