diff options
Diffstat (limited to 'gdb/command.h')
-rw-r--r-- | gdb/command.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gdb/command.h b/gdb/command.h index afc84e4..75462e5 100644 --- a/gdb/command.h +++ b/gdb/command.h @@ -229,11 +229,15 @@ extern struct cmd_list_element *add_set_auto_boolean_cmd (char *name, char *doc, struct cmd_list_element **list); -extern struct cmd_list_element *add_set_boolean_cmd (char *name, - enum command_class class, - int *var, - char *doc, - struct cmd_list_element **list); +extern void add_setshow_boolean_cmd (char *name, + enum command_class class, + int *var, + char *set_doc, + char *show_doc, + cmd_sfunc_ftype *set_func, + cmd_sfunc_ftype *show_func, + struct cmd_list_element **set_list, + struct cmd_list_element **show_list); extern struct cmd_list_element *add_show_from_set (struct cmd_list_element *, struct cmd_list_element |