MSVC: Use the correct functions for file access

This commit is contained in:
darkstar
2018-02-21 20:52:00 +01:00
parent 93f9233fb6
commit fa9334abba

View File

@@ -65,6 +65,11 @@
# define fseeko64 fseeko
# define ftello64 ftello
# define off64_t off_t
#elif defined(_MSC_VER)
# define fopen64 fopen
# define fseeko64 _fseeki64
# define ftello64 _ftelli64
# define off64_t off_t
#endif