summaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2004-01-16 02:28:10 +0000
committerIan C <ianc@noddybox.co.uk>2004-01-16 02:28:10 +0000
commitc1d084c70d3fa63eb787b57c5c6c3f511c95a357 (patch)
tree64cb119a1938dbd4d5e52a762b01c466500c6cd1 /src/gui.h
parent1a8ffd75606e69c6f766188f2ab424cc53782a52 (diff)
Added options to toggle individual breakpoints
Diffstat (limited to 'src/gui.h')
-rw-r--r--src/gui.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui.h b/src/gui.h
index e1ad43a..efbb40c 100644
--- a/src/gui.h
+++ b/src/gui.h
@@ -58,6 +58,14 @@ const char *GUIInputString(const char *prompt, const char *orig);
int GUIListSelect(const char *title, int no, char * const list[]);
+/* Allows options to be toggled in a list. Returns FALSE for cancelled (in
+ which case option will be as it was. TRUE if accepted, and option will be
+ updated.
+*/
+int GUIListOption(const char *title,
+ int no, char * const list[], int option[]);
+
+
/* Select a file from the given directory.
If load is TRUE then a new name cannot be entered.