From d74ad6cd5e9fe19bcba0e299369aaa9960533c0b Mon Sep 17 00:00:00 2001 From: Alcaro Date: Mon, 4 Dec 2017 16:32:40 +0100 Subject: [PATCH] Create fopen_utf8.h --- libretro-common/include/compat/fopen_utf8.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 libretro-common/include/compat/fopen_utf8.h diff --git a/libretro-common/include/compat/fopen_utf8.h b/libretro-common/include/compat/fopen_utf8.h new file mode 100644 index 0000000000..0c6d44d778 --- /dev/null +++ b/libretro-common/include/compat/fopen_utf8.h @@ -0,0 +1,5 @@ +#include +#ifdef _WIN32 +#define fopen fopen_utf8 +FILE* fopen_utf8(const char * filename, const char * mode); +#endif