mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-05 08:49:03 +00:00
Supposedly, not having an fseeko64 is only a Visual Studio thing. Would fix mingw32, supposedly.
This commit is contained in:
+1
-1
@@ -41,7 +41,7 @@ int makedir(const char* dir);
|
|||||||
|
|
||||||
u64 _fsize(const char *filename);
|
u64 _fsize(const char *filename);
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _MSC_VER
|
||||||
inline int fseeko64(FILE *__stream, long long __off, int __whence)
|
inline int fseeko64(FILE *__stream, long long __off, int __whence)
|
||||||
{
|
{
|
||||||
return _fseeki64(__stream, __off, __whence);
|
return _fseeki64(__stream, __off, __whence);
|
||||||
|
|||||||
Reference in New Issue
Block a user