--- hatari/src/includes/debugui.h 2019/04/01 07:09:28 1.1 +++ hatari/src/includes/debugui.h 2019/04/01 07:14:52 1.1.1.3 @@ -1,6 +1,20 @@ /* - Hatari + Hatari - debugui.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. */ +#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); -extern void DebugUI(); +#endif /* HATARI_DEBUGUI_H */