1 #ifndef _INCLUDE_OSD_INIT_MACHINE
2 #define _INCLUDE_OSD_INIT_MACHINE
3 
4 #include <allegro.h>
5 #include "sys_dep.h"
6 #include "lang.h"
7 #include "pce.h"
8 #include "osd_gfx.h"
9 
10 extern UChar gamepad;
11 // gamepad detected ?
12 
13 extern int gamepad_driver;
14 // what kind of jypad must we have to handle
15 
16 extern char synchro;
17 // � fond, � fond, � fond? (french joke ;)
18 
19 extern char dump_snd;
20 // Do we write sound to file
21 
22 extern UChar video_dump;
23 // Do we write generated pictures to files .. ?
24 
25 extern UInt32 last_generated_image;
26 // Name of the last image we dumped, in order to make sequential dumping ..
27 
28 #endif
29