1 #ifndef _INCLUDE_LINUX_OSD_INIT_MACHINE
2 #define _INCLUDE_LINUX_OSD_INIT_MACHINE
3 
4 #if defined(ALLEGRO)
5 
6   #include <allegro.h>
7 
8 #else
9 
10   #if defined(SDL)
11 
12     #include <SDL.h>
13 	#include <SDL_keysym.h>
14 
15   #endif // SDL
16 
17 #endif // ALLEGRO
18 
19 #include "sys_dep.h"
20 #include "lang.h"
21 #include "pce.h"
22 #include "osd_gfx.h"
23 
24 extern UChar gamepad;
25 // gamepad detected ?
26 
27 extern int gamepad_driver;
28 // what kind of jypad must we have to handle
29 
30 extern char synchro;
31 // � fond, � fond, � fond? (french joke ;)
32 
33 extern char dump_snd;
34 // Do we write sound to file
35 
36 extern int *fd[4];
37 // handle for joypad devices
38 
39 #endif
40