mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 13:38:03 +00:00
* Add windows specific wrappers
This commit is contained in:
16
include/win32_largefilewrapper.h
Normal file
16
include/win32_largefilewrapper.h
Normal 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
|
||||
Reference in New Issue
Block a user