diff options
author | Ian C <ianc@noddybox.co.uk> | 2004-01-16 02:28:10 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2004-01-16 02:28:10 +0000 |
commit | c1d084c70d3fa63eb787b57c5c6c3f511c95a357 (patch) | |
tree | 64cb119a1938dbd4d5e52a762b01c466500c6cd1 /src/gui.h | |
parent | 1a8ffd75606e69c6f766188f2ab424cc53782a52 (diff) |
Added options to toggle individual breakpoints
Diffstat (limited to 'src/gui.h')
-rw-r--r-- | src/gui.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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. |