* signame.c: Include defs.h and param.h.
[deliverable/binutils-gdb.git] / gdb / gdbcmd.h
CommitLineData
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
22extern struct cmd_list_element *cmdlist;
23
24/* Chain containing all defined info subcommands. */
25
26extern struct cmd_list_element *infolist;
27
28/* Chain containing all defined enable subcommands. */
29
30extern struct cmd_list_element *enablelist;
31
32/* Chain containing all defined disable subcommands. */
33
34extern struct cmd_list_element *disablelist;
35
36/* Chain containing all defined delete subcommands. */
37
38extern struct cmd_list_element *deletelist;
39
40/* Chain containing all defined "enable breakpoint" subcommands. */
41
42extern struct cmd_list_element *enablebreaklist;
43
44/* Chain containing all defined set subcommands */
45
46extern struct cmd_list_element *setlist;
47
48/* Chain containing all defined show subcommands. */
49extern struct cmd_list_element *showlist;
50
51/* Chain containing all defined \"set history\". */
52
53extern struct cmd_list_element *sethistlist;
54
55/* Chain containing all defined \"show history\". */
56extern struct cmd_list_element *showhistlist;
57
58/* Chain containing all defined \"unset history\". */
59
60extern struct cmd_list_element *unsethistlist;
61
62void execute_command ();
63char **noop_completer ();
This page took 0.086365 seconds and 4 git commands to generate.