use fseeko64() on i686-pc-mingw32
[fdkaac.git] / src / compat.h
index f20f03fb86cecc610a03c38b51c65bc3a27ecd13..4f651abb5f7791aa7071f3c3ffbf8178b93d552b 100644 (file)
@@ -6,7 +6,10 @@
 #define COMPAT_H
 
 #ifndef HAVE_FSEEKO
-#  if _MSC_VER >= 1400
+#  if HAVE_FSEEKO64
+#    define fseeko fseeko64
+#    define ftello ftello64
+#  elif _MSC_VER >= 1400
 #    define fseeko _fseeki64
 #    define ftello _ftelli64
 #  else
@@ -20,5 +23,6 @@ FILE *aacenc_fopen(const char *name, const char *mode);
 void aacenc_getmainargs(int *argc, char ***argv);
 char *aacenc_to_utf8(const char *s);
 int aacenc_fprintf(FILE *fp, const char *fmt, ...);
+const char *aacenc_basename(const char *path);
 
 #endif
This page took 0.008982 seconds and 4 git commands to generate.