--- hatari/src/debug/history.h 2019/04/09 08:53:03 1.1.1.2 +++ hatari/src/debug/history.h 2019/04/09 08:55:33 1.1.1.4 @@ -13,7 +13,7 @@ typedef enum { HISTORY_TRACK_NONE = 0, HISTORY_TRACK_CPU = 1, HISTORY_TRACK_DSP = 2, - HISTORY_TRACK_ALL = 3, + HISTORY_TRACK_ALL = 3 } history_type_t; extern history_type_t HistoryTracking; @@ -32,10 +32,11 @@ extern void History_AddCpu(void); extern void History_AddDsp(void); /* for debugInfo.c */ -extern void History_Show(Uint32 count); +extern void History_Show(FILE *fp, Uint32 count); /* for debugui */ extern void History_Mark(debug_reason_t reason); +extern char *History_Match(const char *text, int state); extern int History_Parse(int nArgc, char *psArgv[]); #endif