1 /* Header file for GDB CLI command implementation library.
2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
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.
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.
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/>. */
17 #if !defined (CLI_CMDS_H)
20 /* Chain containing all defined commands. */
22 extern struct cmd_list_element
*cmdlist
;
24 /* Chain containing all defined info subcommands. */
26 extern struct cmd_list_element
*infolist
;
28 /* Chain containing all defined enable subcommands. */
30 extern struct cmd_list_element
*enablelist
;
32 /* Chain containing all defined disable subcommands. */
34 extern struct cmd_list_element
*disablelist
;
36 /* Chain containing all defined delete subcommands. */
38 extern struct cmd_list_element
*deletelist
;
40 /* Chain containing all defined detach subcommands. */
42 extern struct cmd_list_element
*detachlist
;
44 /* Chain containing all defined kill subcommands. */
46 extern struct cmd_list_element
*killlist
;
48 /* Chain containing all defined stop subcommands. */
50 extern struct cmd_list_element
*stoplist
;
52 /* Chain containing all defined set subcommands */
54 extern struct cmd_list_element
*setlist
;
56 /* Chain containing all defined unset subcommands */
58 extern struct cmd_list_element
*unsetlist
;
60 /* Chain containing all defined show subcommands. */
62 extern struct cmd_list_element
*showlist
;
64 /* Chain containing all defined \"set history\". */
66 extern struct cmd_list_element
*sethistlist
;
68 /* Chain containing all defined \"show history\". */
70 extern struct cmd_list_element
*showhistlist
;
72 /* Chain containing all defined \"unset history\". */
74 extern struct cmd_list_element
*unsethistlist
;
76 /* Chain containing all defined maintenance subcommands. */
78 extern struct cmd_list_element
*maintenancelist
;
80 /* Chain containing all defined "maintenance info" subcommands. */
82 extern struct cmd_list_element
*maintenanceinfolist
;
84 /* Chain containing all defined "maintenance print" subcommands. */
86 extern struct cmd_list_element
*maintenanceprintlist
;
88 extern struct cmd_list_element
*setprintlist
;
90 extern struct cmd_list_element
*showprintlist
;
92 extern struct cmd_list_element
*setdebuglist
;
94 extern struct cmd_list_element
*showdebuglist
;
96 extern struct cmd_list_element
*setchecklist
;
98 extern struct cmd_list_element
*showchecklist
;
100 /* Exported to gdb/top.c */
102 void init_cmd_lists (void);
104 void init_cli_cmds (void);
106 int is_complete_command (struct cmd_list_element
*cmd
);
108 /* Exported to gdb/main.c */
110 extern void cd_command (char *, int);
112 /* Exported to gdb/top.c and gdb/main.c */
114 extern void quit_command (char *, int);
116 extern void source_script (const char *, int);
118 /* Exported to objfiles.c. */
120 extern int find_and_open_script (const char *file
, int search_path
,
121 FILE **streamp
, char **full_path
);
123 /* Command tracing state. */
125 extern int source_verbose
;
126 extern int trace_commands
;
128 #endif /* !defined (CLI_CMDS_H) */