We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9424403 commit ee898d8Copy full SHA for ee898d8
1 file changed
3rdparty/libflac/include/share/compat.h
@@ -53,7 +53,7 @@
53
#define fseeko _fseeki64
54
#define ftello _ftelli64
55
#else /* MinGW */
56
-#if !defined(HAVE_FSEEKO)
+#if !defined(HAVE_FSEEKO) && !defined __MINGW32__
57
#define fseeko fseeko64
58
#define ftello ftello64
59
#endif
@@ -139,7 +139,8 @@
139
# endif
140
#endif /* defined _MSC_VER */
141
142
-#ifdef _WIN32
+#if defined( _WIN32) && !defined(__MINGW32__)
143
+
144
/* All char* strings are in UTF-8 format. Added to support Unicode files on Windows */
145
#include "share/win_utf8_io.h"
146
0 commit comments