xref: /dragonfly/contrib/gdb-7/gdb/cli/cli-cmds.h (revision bcb3e04d)
1 /* Header file for GDB CLI command implementation library.
2    Copyright (c) 2000,2006,2007,2008,2009 Free Software Foundation, Inc.
3 
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8 
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13 
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16 
17 #if !defined (CLI_CMDS_H)
18 #define CLI_CMDS_H 1
19 
20 /* Chain containing all defined commands.  */
21 
22 extern struct cmd_list_element *cmdlist;
23 
24 /* Chain containing all defined info subcommands.  */
25 
26 extern struct cmd_list_element *infolist;
27 
28 /* Chain containing all defined enable subcommands. */
29 
30 extern struct cmd_list_element *enablelist;
31 
32 /* Chain containing all defined disable subcommands. */
33 
34 extern struct cmd_list_element *disablelist;
35 
36 /* Chain containing all defined delete subcommands. */
37 
38 extern struct cmd_list_element *deletelist;
39 
40 /* Chain containing all defined detach subcommands. */
41 
42 extern struct cmd_list_element *detachlist;
43 
44 /* Chain containing all defined kill subcommands.  */
45 
46 extern struct cmd_list_element *killlist;
47 
48 /* Chain containing all defined toggle subcommands. */
49 
50 extern struct cmd_list_element *togglelist;
51 
52 /* Chain containing all defined stop subcommands. */
53 
54 extern struct cmd_list_element *stoplist;
55 
56 /* Chain containing all defined "enable breakpoint" subcommands. */
57 
58 extern struct cmd_list_element *enablebreaklist;
59 
60 /* Chain containing all defined set subcommands */
61 
62 extern struct cmd_list_element *setlist;
63 
64 /* Chain containing all defined unset subcommands */
65 
66 extern struct cmd_list_element *unsetlist;
67 
68 /* Chain containing all defined show subcommands.  */
69 
70 extern struct cmd_list_element *showlist;
71 
72 /* Chain containing all defined \"set history\".  */
73 
74 extern struct cmd_list_element *sethistlist;
75 
76 /* Chain containing all defined \"show history\".  */
77 
78 extern struct cmd_list_element *showhistlist;
79 
80 /* Chain containing all defined \"unset history\".  */
81 
82 extern struct cmd_list_element *unsethistlist;
83 
84 /* Chain containing all defined maintenance subcommands. */
85 
86 extern struct cmd_list_element *maintenancelist;
87 
88 /* Chain containing all defined "maintenance info" subcommands. */
89 
90 extern struct cmd_list_element *maintenanceinfolist;
91 
92 /* Chain containing all defined "maintenance print" subcommands. */
93 
94 extern struct cmd_list_element *maintenanceprintlist;
95 
96 extern struct cmd_list_element *setprintlist;
97 
98 extern struct cmd_list_element *showprintlist;
99 
100 extern struct cmd_list_element *setdebuglist;
101 
102 extern struct cmd_list_element *showdebuglist;
103 
104 extern struct cmd_list_element *setchecklist;
105 
106 extern struct cmd_list_element *showchecklist;
107 
108 /* Exported to gdb/top.c */
109 
110 void init_cmd_lists (void);
111 
112 void init_cli_cmds (void);
113 
114 int is_complete_command (struct cmd_list_element *cmd);
115 
116 /* Exported to gdb/main.c */
117 
118 extern void cd_command (char *, int);
119 
120 /* Exported to gdb/top.c and gdb/main.c */
121 
122 extern void quit_command (char *, int);
123 
124 extern void source_script (char *, int);
125 
126 /* Used everywhere whenever at least one parameter is required and
127   none is specified. */
128 
129 extern NORETURN void error_no_arg (char *) ATTR_NORETURN;
130 
131 /* Command tracing state.  */
132 
133 extern int source_verbose;
134 extern int trace_commands;
135 
136 #endif /* !defined (CLI_CMDS_H) */
137