]>
Commit | Line | Data |
---|---|---|
bd5635a1 RP |
1 | /* Header file for GDB-specific command-line stuff. |
2 | Copyright (C) 1986, 1989, 1990 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 1, or (at your option) | |
7 | 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, write to the Free Software | |
16 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
17 | ||
18 | #include "command.h" | |
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 "enable breakpoint" subcommands. */ | |
41 | ||
42 | extern struct cmd_list_element *enablebreaklist; | |
43 | ||
44 | /* Chain containing all defined set subcommands */ | |
45 | ||
46 | extern struct cmd_list_element *setlist; | |
47 | ||
48 | /* Chain containing all defined show subcommands. */ | |
49 | extern struct cmd_list_element *showlist; | |
50 | ||
51 | /* Chain containing all defined \"set history\". */ | |
52 | ||
53 | extern struct cmd_list_element *sethistlist; | |
54 | ||
55 | /* Chain containing all defined \"show history\". */ | |
56 | extern struct cmd_list_element *showhistlist; | |
57 | ||
58 | /* Chain containing all defined \"unset history\". */ | |
59 | ||
60 | extern struct cmd_list_element *unsethistlist; | |
61 | ||
62 | void execute_command (); | |
63 | char **noop_completer (); |