* Add windows specific wrappers

This commit is contained in:
2014-05-14 22:42:20 -07:00
parent c0974d511a
commit a19520ea1e
6 changed files with 43 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
#ifndef WIN32_LARGEFILEWRAPPER_H
#define WIN32_LARGEFILEWRAPPER_H
#ifdef _WIN32
#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