ultimatepp/bazaar/SDL/SDLWrapper.h
kohait c935495369 bazaar: SDL: linkage fixes
git-svn-id: svn://ultimatepp.org/upp/trunk@3554 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-06-24 08:05:23 +00:00

19 lines
347 B
C

#ifndef _SDL_SDLWrapper_h_
#define _SDL_SDLWrapper_h_
#ifdef COMPILER_MSC
#include <SDL.h>
#include <SDL_thread.h>
#include <SDL_syswm.h>
#endif
#ifdef COMPILER_GCC
#include <SDL/SDL.h>
#include <SDL/SDL_thread.h>
#include <SDL/SDL_syswm.h>
#endif
#define INT64_C(val) val##LL
#define UINT64_C(val) val##ULL
#endif