diff options
Diffstat (limited to 'core/fxcrt/fx_system.h')
-rw-r--r-- | core/fxcrt/fx_system.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/core/fxcrt/fx_system.h b/core/fxcrt/fx_system.h index 1e66e7bb80..5e8aa6c0e6 100644 --- a/core/fxcrt/fx_system.h +++ b/core/fxcrt/fx_system.h @@ -122,16 +122,6 @@ void FXSYS_vsnprintf(char* str, size_t size, const char* fmt, va_list ap); #define FXSYS_sprintf DO_NOT_USE_SPRINTF_DIE_DIE_DIE #define FXSYS_vsprintf DO_NOT_USE_VSPRINTF_DIE_DIE_DIE -#if _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ -#ifdef _NATIVE_WCHAR_T_DEFINED -#define FXSYS_wfopen(f, m) _wfopen((const wchar_t*)(f), (const wchar_t*)(m)) -#else -#define FXSYS_wfopen _wfopen -#endif // _NATIVE_WCHAR_T_DEFINED -#else -FILE* FXSYS_wfopen(const wchar_t* filename, const wchar_t* mode); -#endif // _FXM_PLATFORM_ == _FXM_PLATFORM_WINDOWS_ - #ifdef __cplusplus } // extern "C" |