4621c0c4b3
git-svn-id: http://svn.berlios.de/svnroot/repos/oolite-linux/trunk@130 127b21dd-08f5-0310-b4b7-95ae10353056
27 lines
477 B
C
27 lines
477 B
C
#ifndef OOLITE_LINUX
|
|
#define OOLITE_LINUX
|
|
/*
|
|
*
|
|
* oolite-linux.h: Includes, definitions and pathnames for Linux
|
|
* systems.
|
|
*
|
|
* Dylan Smith, 2005-04-19
|
|
*
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
#include "SDL.h"
|
|
#include "SDL_opengl.h"
|
|
#include "SDL_mixer.h"
|
|
#include "SDL_syswm.h"
|
|
|
|
#define MAX_CHANNELS 32
|
|
|
|
// Macintosh compatibility defines
|
|
#define kCGDisplayWidth (@"Width")
|
|
#define kCGDisplayHeight (@"Height")
|
|
#define kCGDisplayRefreshRate (@"RefreshRate")
|
|
|
|
#endif /* OOLITE_LINUX */
|