--- hatari/src/includes/main.h 2019/04/09 08:47:13 1.1.1.17 +++ hatari/src/includes/main.h 2019/04/09 08:53:09 1.1.1.24 @@ -1,18 +1,13 @@ /* Hatari - main.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_MAIN_H #define HATARI_MAIN_H - -/* Name and version for window title: */ -//#define PROG_NAME "Hatari devel (" __DATE__ ")" -#define PROG_NAME "Hatari v1.3.0" - #include "config.h" #include @@ -47,16 +42,18 @@ #define SIZE_WORD 2 #define SIZE_LONG 4 +/* The 8 MHz CPU frequency */ +#define CPU_FREQ 8012800 extern bool bQuitProgram; -extern Uint32 nRunVBLs; -extern void Main_MemorySnapShot_Capture(bool bSave); extern bool Main_PauseEmulation(bool visualize); extern bool Main_UnPauseEmulation(void); extern void Main_RequestQuit(void); +extern void Main_SetRunVBLs(Uint32 vbls); extern void Main_WaitOnVbl(void); extern void Main_WarpMouse(int x, int y); extern void Main_EventHandler(void); +extern void Main_SetTitle(const char *title); #endif /* ifndef HATARI_MAIN_H */