--- hatari/src/includes/main.h 2019/04/01 07:13:05 1.1.1.12 +++ hatari/src/includes/main.h 2019/04/01 07:13:39 1.1.1.13 @@ -8,10 +8,10 @@ #ifndef HATARI_MAIN_H #define HATARI_MAIN_H -typedef signed char BOOL; -#define PROG_NAME "Hatari v0.90" /* Name, version for window title */ -#define PROG_VERSION "v0.90" +/* Name and version for window title: */ +// #define PROG_NAME "Hatari CVS (" __DATE__ ")" +#define PROG_NAME "Hatari v1.0.0" #include @@ -23,6 +23,8 @@ typedef signed char BOOL; #include +typedef signed char BOOL; + #ifndef FALSE #define FALSE 0 #define TRUE (!0) @@ -104,8 +106,6 @@ enum { #define EXCEPTION_TRAP13 0x000000B4 #define EXCEPTION_TRAP14 0x000000B8 -/* Find IPL - don't forget to call MakeSR() before you use it! */ -#define FIND_IPL ((SR>>8)&0x7) /* Size of 68000 instructions */ #define MAX_68000_INSTRUCTION_SIZE 10 /* Longest 68000 instruction is 10 bytes(6+4) */ @@ -122,12 +122,11 @@ enum { extern BOOL bQuitProgram; extern BOOL bEnableDebug; -extern char szWorkingDir[FILENAME_MAX]; - extern void Main_MemorySnapShot_Capture(BOOL bSave); extern void Main_PauseEmulation(void); extern void Main_UnPauseEmulation(void); +extern void Main_RequestQuit(void); extern void Main_WaitOnVbl(void); extern void Main_WarpMouse(int x, int y); extern void Main_EventHandler(void);