--- previous/src/includes/shortcut.h 2018/04/24 19:25:10 1.1 +++ previous/src/includes/shortcut.h 2018/04/24 19:32:28 1.1.1.2 @@ -8,8 +8,11 @@ /* If pressed short-cut key modifier or standalone short-cut key, * retain keypress until safe to execute (start of VBL). Returns zero * if key wasn't a shortcut */ -extern int ShortCut_CheckKeys(int modkey, int symkey, bool press); +int ShortCut_CheckKeys(int modkey, int symkey, bool press); /* Invoke shortcut identified by name */ -extern bool Shortcut_Invoke(const char *shortcut); +bool Shortcut_Invoke(const char *shortcut); /* Act on the stored keypress (in VBL) */ -extern void ShortCut_ActKey(void); +void ShortCut_ActKey(void); +/* Debugger invocations */ +void ShortCut_Debug_M68K(void); +void ShortCut_Debug_I860(void);