* cli/cli-cmds.c (_initialize_cli_cmds): Remove "document",
[deliverable/binutils-gdb.git] / gdb / cli / cli-script.h
CommitLineData
d318976c 1/* Header file for GDB CLI command implementation library.
0b302171 2 Copyright (c) 2000, 2002, 2007-2012 Free Software Foundation, Inc.
d318976c
FN
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
a9762ec7 6 the Free Software Foundation; either version 3 of the License, or
d318976c
FN
7 (at your option) 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
a9762ec7 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
d318976c
FN
16
17#if !defined (CLI_SCRIPT_H)
18#define CLI_SCRIPT_H 1
19
da3331ec
AC
20struct ui_file;
21struct command_line;
22struct cmd_list_element;
23
d318976c
FN
24/* Exported to cli/cli-cmds.c */
25
05159abe 26extern void script_from_file (FILE *stream, const char *file);
d318976c 27
adb483fe
DJ
28extern void show_user_1 (struct cmd_list_element *c, char *prefix,
29 char *name, struct ui_file *stream);
d318976c
FN
30
31/* Exported to gdb/breakpoint.c */
32
33extern enum command_control_type
34 execute_control_command (struct command_line *cmd);
35
d57a3c85
TJB
36extern enum command_control_type
37 execute_control_command_untraced (struct command_line *cmd);
38
39extern struct command_line *get_command_line (enum command_control_type,
40 char *);
41
d318976c
FN
42extern void print_command_lines (struct ui_out *,
43 struct command_line *, unsigned int);
d318976c 44
e1507482
EZ
45extern struct command_line * copy_command_lines (struct command_line *cmds);
46
6c50ab1c
JB
47struct cleanup *make_cleanup_free_command_lines (struct command_line **arg);
48
d318976c
FN
49/* Exported to gdb/infrun.c */
50
51extern void execute_user_command (struct cmd_list_element *c, char *args);
52
16026cd7
AS
53/* Exported to top.c */
54
55extern void print_command_trace (const char *cmd);
56
57/* Exported to event-top.c */
58
59extern void reset_command_nest_depth (void);
60
d318976c 61#endif /* !defined (CLI_SCRIPT_H) */
This page took 0.831015 seconds and 4 git commands to generate.