Browse Source

Silence some warnings

Darryl Pogue 14 years ago
parent
commit
a05a6ccad1
  1. 1
      Sources/Plasma/CoreLib/hsUtils.h
  2. 5
      Sources/Plasma/PubUtilLib/plFile/plFileUtils.cpp

1
Sources/Plasma/CoreLib/hsUtils.h

@ -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

5
Sources/Plasma/PubUtilLib/plFile/plFileUtils.cpp

@ -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

Loading…
Cancel
Save