2011-03-18 Phil Muldoon <pmuldoon@redhat.com>
[deliverable/binutils-gdb.git] / gdb / cli / cli-script.h
CommitLineData
d318976c 1/* Header file for GDB CLI command implementation library.
7b6bb8da 2 Copyright (c) 2000, 2002, 2007, 2008, 2009, 2010, 2011
4c38e0a4 3 Free Software Foundation, Inc.
d318976c
FN
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
a9762ec7 7 the Free Software Foundation; either version 3 of the License, or
d318976c
FN
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
a9762ec7 16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
d318976c
FN
17
18#if !defined (CLI_SCRIPT_H)
19#define CLI_SCRIPT_H 1
20
da3331ec
AC
21struct ui_file;
22struct command_line;
23struct cmd_list_element;
24
d318976c
FN
25/* Exported to cli/cli-cmds.c */
26
05159abe 27extern void script_from_file (FILE *stream, const char *file);
d318976c
FN
28
29extern void document_command (char *, int);
30
31extern void define_command (char *, int);
32
33extern void while_command (char *arg, int from_tty);
34
35extern void if_command (char *arg, int from_tty);
36
adb483fe
DJ
37extern void show_user_1 (struct cmd_list_element *c, char *prefix,
38 char *name, struct ui_file *stream);
d318976c
FN
39
40/* Exported to gdb/breakpoint.c */
41
42extern enum command_control_type
43 execute_control_command (struct command_line *cmd);
44
d57a3c85
TJB
45extern enum command_control_type
46 execute_control_command_untraced (struct command_line *cmd);
47
48extern struct command_line *get_command_line (enum command_control_type,
49 char *);
50
d318976c
FN
51extern void print_command_lines (struct ui_out *,
52 struct command_line *, unsigned int);
d318976c 53
e1507482
EZ
54extern struct command_line * copy_command_lines (struct command_line *cmds);
55
6c50ab1c
JB
56struct cleanup *make_cleanup_free_command_lines (struct command_line **arg);
57
d318976c
FN
58/* Exported to gdb/infrun.c */
59
60extern void execute_user_command (struct cmd_list_element *c, char *args);
61
16026cd7
AS
62/* Exported to top.c */
63
64extern void print_command_trace (const char *cmd);
65
66/* Exported to event-top.c */
67
68extern void reset_command_nest_depth (void);
69
d318976c 70#endif /* !defined (CLI_SCRIPT_H) */
This page took 0.628372 seconds and 4 git commands to generate.