Don't emit symbols seen only in dynamic object, don't read duplicate
[deliverable/binutils-gdb.git] / gdb / gdbcmd.h
... / ...
CommitLineData
1/* ***DEPRECATED*** The gdblib files must not be calling/using things in any
2 of the possible command languages. If necessary, a hook (that may be
3 present or not) must be used and set to the appropriate routine by any
4 command language that cares about it. If you are having to include this
5 file you are possibly doing things the old way. This file will disapear.
6 fnasser@redhat.com */
7
8/* Header file for GDB-specific command-line stuff.
9 Copyright (C) 1986, 1989, 1990, 1991, 1992, 1993, 1994, 1998, 1999,
10 2000, 2002 Free Software Foundation, Inc.
11
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 Boston, MA 02110-1301, USA. */
26
27#if !defined (GDBCMD_H)
28#define GDBCMD_H 1
29
30#include "command.h"
31#include "ui-out.h"
32
33/* Chain containing all defined commands. */
34
35extern struct cmd_list_element *cmdlist;
36
37/* Chain containing all defined info subcommands. */
38
39extern struct cmd_list_element *infolist;
40
41/* Chain containing all defined enable subcommands. */
42
43extern struct cmd_list_element *enablelist;
44
45/* Chain containing all defined disable subcommands. */
46
47extern struct cmd_list_element *disablelist;
48
49/* Chain containing all defined delete subcommands. */
50
51extern struct cmd_list_element *deletelist;
52
53/* Chain containing all defined detach subcommands. */
54
55extern struct cmd_list_element *detachlist;
56
57/* Chain containing all defined toggle subcommands. */
58
59extern struct cmd_list_element *togglelist;
60
61/* Chain containing all defined stop subcommands. */
62
63extern struct cmd_list_element *stoplist;
64
65/* Chain containing all defined "enable breakpoint" subcommands. */
66
67extern struct cmd_list_element *enablebreaklist;
68
69/* Chain containing all defined set subcommands. */
70
71extern struct cmd_list_element *setlist;
72
73/* Chain containing all defined unset subcommands. */
74
75extern struct cmd_list_element *unsetlist;
76
77/* Chain containing all defined show subcommands. */
78
79extern struct cmd_list_element *showlist;
80
81/* Chain containing all defined \"set history\". */
82
83extern struct cmd_list_element *sethistlist;
84
85/* Chain containing all defined \"show history\". */
86
87extern struct cmd_list_element *showhistlist;
88
89/* Chain containing all defined \"unset history\". */
90
91extern struct cmd_list_element *unsethistlist;
92
93/* Chain containing all defined maintenance subcommands. */
94
95extern struct cmd_list_element *maintenancelist;
96
97/* Chain containing all defined "maintenance info" subcommands. */
98
99extern struct cmd_list_element *maintenanceinfolist;
100
101/* Chain containing all defined "maintenance print" subcommands. */
102
103extern struct cmd_list_element *maintenanceprintlist;
104
105/* Chain containing all defined "maintenance set" subcommands. */
106
107extern struct cmd_list_element *maintenance_set_cmdlist;
108
109/* Chain containing all defined "maintenance show" subcommands. */
110
111extern struct cmd_list_element *maintenance_show_cmdlist;
112
113extern struct cmd_list_element *setprintlist;
114
115extern struct cmd_list_element *showprintlist;
116
117extern struct cmd_list_element *setdebuglist;
118
119extern struct cmd_list_element *showdebuglist;
120
121extern struct cmd_list_element *setchecklist;
122
123extern struct cmd_list_element *showchecklist;
124
125extern void execute_command (char *, int);
126
127enum command_control_type execute_control_command (struct command_line *);
128
129extern void print_command_line (struct command_line *, unsigned int,
130 struct ui_file *);
131extern void print_command_lines (struct ui_out *,
132 struct command_line *, unsigned int);
133
134#endif /* !defined (GDBCMD_H) */
This page took 0.025506 seconds and 4 git commands to generate.