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