summaryrefslogtreecommitdiff
path: root/gdb/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/command.h')
-rw-r--r--gdb/command.h29
1 files changed, 19 insertions, 10 deletions
diff --git a/gdb/command.h b/gdb/command.h
index e2a44b2a033..348adab36a7 100644
--- a/gdb/command.h
+++ b/gdb/command.h
@@ -1,7 +1,7 @@
/* Header file for command-reading library command.c.
Copyright 1986, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1999,
- 2000, 2002 Free Software Foundation, Inc.
+ 2000, 2002, 2004 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -214,7 +214,8 @@ extern void help_cmd_list (struct cmd_list_element *, enum command_class,
extern void add_setshow_cmd (char *name,
enum command_class class,
var_types var_type, void *var,
- char *set_doc, char *show_doc,
+ const char *set_doc, const char *show_doc,
+ const char *help_doc, const char *print,
cmd_sfunc_ftype *set_func,
cmd_sfunc_ftype *show_func,
struct cmd_list_element **set_list,
@@ -223,7 +224,8 @@ extern void add_setshow_cmd (char *name,
extern void add_setshow_cmd_full (char *name,
enum command_class class,
var_types var_type, void *var,
- char *set_doc, char *show_doc,
+ const char *set_doc, const char *show_doc,
+ const char *help_doc, const char *print,
cmd_sfunc_ftype *set_func,
cmd_sfunc_ftype *show_func,
struct cmd_list_element **set_list,
@@ -247,7 +249,10 @@ extern struct cmd_list_element *add_set_enum_cmd (char *name,
extern void add_setshow_auto_boolean_cmd (char *name,
enum command_class class,
enum auto_boolean *var,
- char *set_doc, char *show_doc,
+ const char *set_doc,
+ const char *show_doc,
+ const char *help_doc,
+ const char *print,
cmd_sfunc_ftype *set_func,
cmd_sfunc_ftype *show_func,
struct cmd_list_element **set_list,
@@ -256,8 +261,8 @@ extern void add_setshow_auto_boolean_cmd (char *name,
extern void add_setshow_boolean_cmd (char *name,
enum command_class class,
int *var,
- char *set_doc,
- char *show_doc,
+ const char *set_doc, const char *show_doc,
+ const char *help_doc, const char *print,
cmd_sfunc_ftype *set_func,
cmd_sfunc_ftype *show_func,
struct cmd_list_element **set_list,
@@ -266,8 +271,10 @@ extern void add_setshow_boolean_cmd (char *name,
extern void add_setshow_uinteger_cmd (char *name,
enum command_class class,
unsigned int *var,
- char *set_doc,
- char *show_doc,
+ const char *set_doc,
+ const char *show_doc,
+ const char *help_doc,
+ const char *print,
cmd_sfunc_ftype *set_func,
cmd_sfunc_ftype *show_func,
struct cmd_list_element **set_list,
@@ -276,8 +283,10 @@ extern void add_setshow_uinteger_cmd (char *name,
extern void add_setshow_zinteger_cmd (char *name,
enum command_class class,
int *var,
- char *set_doc,
- char *show_doc,
+ const char *set_doc,
+ const char *show_doc,
+ const char *help_doc,
+ const char *print,
cmd_sfunc_ftype *set_func,
cmd_sfunc_ftype *show_func,
struct cmd_list_element **set_list,