mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 13:38:03 +00:00
* Visual Studio fixes (requires VS2013 at the minimum)
This commit is contained in:
@@ -1,11 +1,16 @@
|
||||
#ifndef WIN32_LARGEFILEWRAPPER_H
|
||||
#define WIN32_LARGEFILEWRAPPER_H
|
||||
|
||||
#if defined(_WIN32) && defined(_MSC_VER)
|
||||
#if defined(_MSC_VER)
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#ifndef off64_t
|
||||
typedef uint64_t off64_t;
|
||||
#endif
|
||||
|
||||
int fseeko64(FILE* fp, off64_t offset, int whence);
|
||||
off64_t ftello64(FILE* fp);
|
||||
#ifdef __cplusplus
|
||||
|
||||
Reference in New Issue
Block a user