Update SDL2 to 2.0.3

This commit is contained in:
MAN-AT-ARMS 2014-03-24 19:13:56 -04:00
parent c55df2c9aa
commit d426ed307d
27 changed files with 434 additions and 7 deletions

View file

@ -43,7 +43,7 @@
/* Some compilers use a special export keyword */
#ifndef DECLSPEC
# if defined(__WIN32__)
# if defined(__WIN32__) || defined(__WINRT__)
# ifdef __BORLANDC__
# ifdef BUILD_SDL
# define DECLSPEC
@ -66,7 +66,7 @@
/* By default SDL uses the C calling convention */
#ifndef SDLCALL
#if defined(__WIN32__) && !defined(__GNUC__)
#if (defined(__WIN32__) || defined(__WINRT__)) && !defined(__GNUC__)
#define SDLCALL __cdecl
#else
#define SDLCALL