ultimatepp/bazaar/SDL/SDLWrapper.h
sergeynikitin 1a62e74090 .Bazaar/SDL : Some platform specific corrections
git-svn-id: svn://ultimatepp.org/upp/trunk@3947 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-10-03 00:19:47 +00:00

17 lines
316 B
C

#ifndef _SDL_SDLWrapper_h_
#define _SDL_SDLWrapper_h_
#if defined(PLATFORM_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
#define INT64_C(val) val##LL
#define UINT64_C(val) val##ULL
#endif