--- hatari/src/includes/debugui.h 2019/04/01 07:11:35 1.1.1.2 +++ hatari/src/includes/debugui.h 2019/04/01 07:14:52 1.1.1.3 @@ -5,5 +5,16 @@ your option any later version. Read the file gpl.txt for details. */ +#ifndef HATARI_DEBUGUI_H +#define HATARI_DEBUGUI_H + +/* DebugUI_ParseCommand() return values */ +enum { + DEBUG_QUIT, + DEBUG_CMD +}; extern void DebugUI(void); +extern int DebugUI_ParseCommand(char *input); + +#endif /* HATARI_DEBUGUI_H */