mirror of https://github.com/encounter/SDL.git
Fixed building on Visual Studio 2013 and older
This commit is contained in:
parent
287571fb46
commit
4ec259a784
|
@ -28,10 +28,14 @@
|
||||||
|
|
||||||
#include "SDL_stdinc.h"
|
#include "SDL_stdinc.h"
|
||||||
|
|
||||||
#if !defined(HAVE_VSSCANF) || !defined(HAVE_STRTOL) || !defined(HAVE_STRTOUL) || !defined(HAVE_STRTOLL) || !defined(HAVE_STRTOULL) || !defined(HAVE_STRTOD)
|
#if defined(_MSC_VER) && _MSC_VER <= 1800
|
||||||
|
/* Visual Studio 2013 tries to link with _vacopy in the C runtime. Newer versions do an inline assignment */
|
||||||
|
#undef va_copy
|
||||||
|
#define va_copy(dst, src) dst = src
|
||||||
|
#endif
|
||||||
|
|
||||||
#define SDL_isupperhex(X) (((X) >= 'A') && ((X) <= 'F'))
|
#define SDL_isupperhex(X) (((X) >= 'A') && ((X) <= 'F'))
|
||||||
#define SDL_islowerhex(X) (((X) >= 'a') && ((X) <= 'f'))
|
#define SDL_islowerhex(X) (((X) >= 'a') && ((X) <= 'f'))
|
||||||
#endif
|
|
||||||
|
|
||||||
#define UTF8_IsLeadByte(c) ((c) >= 0xC0 && (c) <= 0xF4)
|
#define UTF8_IsLeadByte(c) ((c) >= 0xC0 && (c) <= 0xF4)
|
||||||
#define UTF8_IsTrailingByte(c) ((c) >= 0x80 && (c) <= 0xBF)
|
#define UTF8_IsTrailingByte(c) ((c) >= 0x80 && (c) <= 0xBF)
|
||||||
|
|
Loading…
Reference in New Issue