home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 February / maximum-cd-2009-02.iso / DiscContents / SMC_1.6_win32.exe / src / core / global_sdl.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-07-01  |  986 b   |  32 lines

  1. /***************************************************************************
  2.  * global_sdl.h  -  global header
  3.  *
  4.  * Copyright (C) 2003 - 2008 Florian Richter
  5.  ***************************************************************************/
  6. /*
  7.    This program is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 3 of the License, or
  10.    (at your option) any later version.
  11.    
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  14. */
  15.  
  16. #ifndef SMC_GLOBAL_SDL_H
  17. #define SMC_GLOBAL_SDL_H
  18.  
  19. /* *** *** *** *** *** *** *** *** SDL *** *** *** *** *** *** *** *** *** */
  20.  
  21. #include "SDL.h"
  22. #include "SDL_opengl.h"
  23. #include "SDL_ttf.h"
  24. #include "SDL_image.h"
  25. #include "SDL_mixer.h"
  26.  
  27. #if defined( __WIN32__ ) && defined( _DEBUG )
  28.     #undef main
  29. #endif
  30.  
  31. #endif
  32.