diff options
author | Ian C <ianc@noddybox.co.uk> | 2021-07-05 21:37:37 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2021-07-05 21:37:37 +0000 |
commit | 06f2daa56e0eb8e592c015b07dbeb787bb081e4d (patch) | |
tree | 59c9a9c05fff8e4aff8b7ad045dc739151a7a027 /include/gui.h | |
parent | 0bc192bffbf28ba5733ae955916e5ebc72f3641f (diff) |
Added TAP file loading.
Diffstat (limited to 'include/gui.h')
-rw-r--r-- | include/gui.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/gui.h b/include/gui.h index ed64ffe..027e2b6 100644 --- a/include/gui.h +++ b/include/gui.h @@ -21,6 +21,8 @@ #ifndef DSSPEC_GUI_H #define DSSPEC_GUI_H +#include <stdio.h> + int GUI_Menu(const char *opts[]); void GUI_Alert(int fatal, const char *text); void GUI_Config(void); @@ -29,4 +31,6 @@ int GUI_FileSelect(char pwd[], char selected_file[], int GUI_InputName(const char *prompt, const char *ext, char name[], int maxlen); +extern char last_dir[FILENAME_MAX]; + #endif /* DSSPEC_GUI_H */ |