hal.h
changeset 543 946badd71033
parent 223 0e5cc5a65df6
child 810 a1494b19bd2a
equal deleted inserted replaced
542:de27e74b11bd 543:946badd71033
    69 
    69 
    70 #if defined(__BEOS__)
    70 #if defined(__BEOS__)
    71 extern const HalMusicDriver _bemidi_music_driver;
    71 extern const HalMusicDriver _bemidi_music_driver;
    72 #endif
    72 #endif
    73 
    73 
       
    74 extern const HalVideoDriver _dedicated_video_driver;
       
    75 
    74 enum DriverType {
    76 enum DriverType {
    75 	VIDEO_DRIVER = 0,
    77 	VIDEO_DRIVER = 0,
    76 	SOUND_DRIVER = 1,
    78 	SOUND_DRIVER = 1,
    77 	MUSIC_DRIVER = 2,
    79 	MUSIC_DRIVER = 2,
    78 };
    80 };
   117 	FIOS_TYPE_OLDFILE = 4,
   119 	FIOS_TYPE_OLDFILE = 4,
   118 	FIOS_TYPE_SCENARIO = 5,
   120 	FIOS_TYPE_SCENARIO = 5,
   119 	FIOS_TYPE_OLD_SCENARIO = 6,
   121 	FIOS_TYPE_OLD_SCENARIO = 6,
   120 };
   122 };
   121 
   123 
       
   124 
       
   125 // Variables to display file lists
       
   126 FiosItem *_fios_list;
       
   127 int _fios_num;
       
   128 int _saveload_mode;
       
   129 
   122 // get the name of an oldstyle savegame
   130 // get the name of an oldstyle savegame
   123 void GetOldSaveGameName(char *title, const char *file);
   131 void GetOldSaveGameName(char *title, const char *file);
   124 // get the name of an oldstyle scenario
   132 // get the name of an oldstyle scenario
   125 void GetOldScenarioGameName(char *title, const char *file);
   133 void GetOldScenarioGameName(char *title, const char *file);
   126 
   134