Commit 42db4456 authored by wind2009's avatar wind2009

Remove rewrite for swprintf

parent 4cf17949
Pipeline #30974 failed with stages
in 1 minute and 10 seconds
...@@ -116,17 +116,6 @@ typedef double f64; ...@@ -116,17 +116,6 @@ typedef double f64;
#include <wchar.h> #include <wchar.h>
#ifdef _IRR_WINDOWS_API_ #ifdef _IRR_WINDOWS_API_
//! Defines for s{w,n}printf because these methods do not match the ISO C
//! standard on Windows platforms, but it does on all others.
//! These should be int snprintf(char *str, size_t size, const char *format, ...);
//! and int swprintf(wchar_t *wcs, size_t maxlen, const wchar_t *format, ...);
#if defined(_MSC_VER) && _MSC_VER > 1310 && !defined (_WIN32_WCE)
#define swprintf swprintf_s
#define snprintf sprintf_s
#elif !defined(__CYGWIN__)
#define swprintf _snwprintf
#define snprintf _snprintf
#endif
// define the wchar_t type if not already built in. // define the wchar_t type if not already built in.
#ifdef _MSC_VER #ifdef _MSC_VER
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment