--- hatari/src/includes/gemdos.h 2019/04/01 07:14:45 1.1.1.9 +++ hatari/src/includes/gemdos.h 2019/04/09 08:55:39 1.1.1.15 @@ -1,17 +1,17 @@ /* Hatari - gemdos.h - This file is distributed under the GNU Public License, version 2 or at - your option any later version. Read the file gpl.txt for details. + This file is distributed under the GNU General Public License, version 2 + or at your option any later version. Read the file gpl.txt for details. */ #ifndef HATARI_GEMDOS_H #define HATARI_GEMDOS_H typedef struct { - char hd_emulation_dir[FILENAME_MAX]; /* hd emulation directory */ - char fs_currpath[FILENAME_MAX]; /* current path */ - int hd_letter; /* drive letter */ + char hd_emulation_dir[FILENAME_MAX]; /* hd emulation directory (Host OS) */ + char fs_currpath[FILENAME_MAX]; /* current path (Host OS) */ + int drive_number; /* drive number (C: = 2, D: = 3...) */ } EMULATEDDRIVE; extern EMULATEDDRIVE **emudrives; @@ -25,9 +25,9 @@ extern void GemDOS_InitDrives(void); extern void GemDOS_UnInitDrives(void); extern void GemDOS_MemorySnapShot_Capture(bool bSave); extern void GemDOS_CreateHardDriveFileName(int Drive, const char *pszFileName, char *pszDestName, int nDestNameLen); -extern bool GemDOS(void); +extern bool GemDOS_IsDriveEmulated(int drive); +extern void GemDOS_Info(FILE *fp, Uint32 bShowOpcodes); extern void GemDOS_OpCode(void); -extern void GemDOS_RunOldOpCode(void); extern void GemDOS_Boot(void); #endif /* HATARI_GEMDOS_H */