mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-14 02:27:40 -04:00
Silence some warnings
This commit is contained in:
@ -50,6 +50,7 @@ char * hsFormatStrV(const char * fmt, va_list args); // You are responsible f
|
||||
#define strnicmp _strnicmp
|
||||
#define wcsicmp _wcsicmp
|
||||
#define wcsnicmp _wcsnicmp
|
||||
#define strlwr _strlwr
|
||||
#else
|
||||
#define stricmp strcasecmp
|
||||
#define strnicmp strncasecmp
|
||||
|
@ -54,6 +54,11 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#if HS_BUILD_FOR_WIN32
|
||||
#include <direct.h>
|
||||
#include <io.h>
|
||||
#define mkdir _mkdir
|
||||
#define chdir _chdir
|
||||
#define chmod _chmod
|
||||
#define rmdir _rmdir
|
||||
#define unlink _unlink
|
||||
#endif
|
||||
|
||||
#if HS_BUILD_FOR_UNIX
|
||||
|
Reference in New Issue
Block a user