ultimatepp/bazaar/SDL/SDLWrapper.h
koldo b70af542d0 *SDL: Fixed .h
git-svn-id: svn://ultimatepp.org/upp/trunk@5755 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2013-02-02 16:05:13 +00:00

19 lines
338 B
C

#ifndef _SDL_SDLWrapper_h_
#define _SDL_SDLWrapper_h_
#if defined(_WIN32)
#include <SDL.h>
#include <SDL_thread.h>
#include <SDL_syswm.h>
#else
#include <SDL/SDL.h>
#include <SDL/SDL_thread.h>
#include <SDL/SDL_syswm.h>
#endif
#undef main
#define INT64_C(val) val##LL
#define UINT64_C(val) val##ULL
#endif