1 /* Header file for GDB-specific command-line stuff.
2 Copyright 1986, 1989, 1990, 1992 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 2 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, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
18 #if !defined (GDBCMD_H)
23 /* Chain containing all defined commands. */
25 extern struct cmd_list_element
*cmdlist
;
27 /* Chain containing all defined info subcommands. */
29 extern struct cmd_list_element
*infolist
;
31 /* Chain containing all defined enable subcommands. */
33 extern struct cmd_list_element
*enablelist
;
35 /* Chain containing all defined disable subcommands. */
37 extern struct cmd_list_element
*disablelist
;
39 /* Chain containing all defined delete subcommands. */
41 extern struct cmd_list_element
*deletelist
;
43 /* Chain containing all defined "enable breakpoint" subcommands. */
45 extern struct cmd_list_element
*enablebreaklist
;
47 /* Chain containing all defined set subcommands */
49 extern struct cmd_list_element
*setlist
;
51 /* Chain containing all defined unset subcommands */
53 extern struct cmd_list_element
*unsetlist
;
55 /* Chain containing all defined show subcommands. */
57 extern struct cmd_list_element
*showlist
;
59 /* Chain containing all defined \"set history\". */
61 extern struct cmd_list_element
*sethistlist
;
63 /* Chain containing all defined \"show history\". */
65 extern struct cmd_list_element
*showhistlist
;
67 /* Chain containing all defined \"unset history\". */
69 extern struct cmd_list_element
*unsethistlist
;
71 /* Chain containing all defined maintenance subcommands. */
74 extern struct cmd_list_element
*maintenancelist
;
77 /* Chain containing all defined "maintenance info" subcommands. */
80 extern struct cmd_list_element
*maintenanceinfolist
;
83 extern struct cmd_list_element
*setprintlist
;
85 extern struct cmd_list_element
*showprintlist
;
87 extern struct cmd_list_element
*setchecklist
;
89 extern struct cmd_list_element
*showchecklist
;
92 execute_command
PARAMS ((char *, int));
95 noop_completer
PARAMS ((char *));
97 #endif /* !defined (GDBCMD_H) */