fixes for MSVC non-standard C library

strcase => _stricmp
strncase => _strnicmp
strdup => _strdup
snprintf => _snprintf

a compliant snprintf() is supposed to be available
in MS Visual Studio 2015 and later
This commit is contained in:
Thomas Bernard
2018-02-20 15:31:45 +01:00
parent 87e4cfad94
commit 60beebc9ac
11 changed files with 38 additions and 9 deletions

View File

@@ -60,8 +60,11 @@
#ifdef _MSC_VER
#include <stdio.h>
#define strdup _strdup
#if _MSC_VER < 1900
#define snprintf _snprintf
#endif
#endif
// Virtual keyboard is ON by default on these platforms:
#if defined(__GP2X__) || defined(__WIZ__) || defined(__CAANOO__) || defined(GCWZERO)