0ad/source/lib/sdl.h
janwas 5af6d6007b removed endian.* and rolled it into (w)sdl
This was SVN commit r329.
2004-05-31 12:21:14 +00:00

11 lines
423 B
C
Executable file

#if defined(_WIN32) && !defined(NO_WSDL)
# include "sysdep/win/wsdl.h"
#else
# include <SDL/SDL.h>
# include <SDL/SDL_thread.h>
# include <SDL/SDL_endian.h>
// if the compiler doesn't support inlining, this header will pull
// in static bswap routines. doesn't matter - modern compilers
// will strip them if unused, and this is more convenient than
// another header that toggles between wsdl and SDL_endian.h.
#endif