Mercurial > sdl-ios-xcode
changeset 3620:838fcbc09c68
The OS/2 support has been removed, so we don't need this now.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 07 Jan 2010 04:38:58 +0000 |
parents | 07fbaf6ccb51 |
children | 2fbe6995b2a2 |
files | include/begin_code.h |
diffstat | 1 files changed, 5 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/include/begin_code.h Wed Jan 06 21:04:11 2010 +0000 +++ b/include/begin_code.h Thu Jan 07 04:38:58 2010 +0000 @@ -52,12 +52,6 @@ # else # define DECLSPEC __declspec(dllexport) # endif -# elif defined(__OS2__) -# ifdef BUILD_SDL -# define DECLSPEC __declspec(dllexport) -# else -# define DECLSPEC -# endif # else # if defined(__GNUC__) && __GNUC__ >= 4 # define DECLSPEC __attribute__ ((visibility("default"))) @@ -69,18 +63,11 @@ /* By default SDL uses the C calling convention */ #ifndef SDLCALL -# if defined(__WIN32__) && !defined(__GNUC__) -# define SDLCALL __cdecl -# elif defined(__OS2__) - /* Use the _System calling convention to be compatible with every OS/2 - compiler. (Please note that this used to be _cdecl for GCC, but that - was a bug. Someone should go examine and fix the XFree86 integration - instead. We shouldn't be passing SDLCALL function pointers between SDL - and XFree86!) */ -# define SDLCALL _System -# else -# define SDLCALL -# endif +#if defined(__WIN32__) && !defined(__GNUC__) +#define SDLCALL __cdecl +#else +#define SDLCALL +#endif #endif /* SDLCALL */ /* Removed DECLSPEC on Symbian OS because SDL cannot be a DLL in EPOC */