Import gdb-7.0
[dragonfly.git] / contrib / gdb-6 / gdb / cli / cli-script.h
blob2e7d1cc29ec632fafa57f83ca922bb19b2de0e75
1 /* Header file for GDB CLI command implementation library.
2 Copyright (c) 2000, 2002, 2007 Free Software Foundation, Inc.
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 3 of the License, or
7 (at your option) any later version.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 #if !defined (CLI_SCRIPT_H)
18 #define CLI_SCRIPT_H 1
20 struct ui_file;
21 struct command_line;
22 struct cmd_list_element;
24 /* Exported to cli/cli-cmds.c */
26 extern void script_from_file (FILE *stream, char *file);
28 extern void document_command (char *, int);
30 extern void define_command (char *, int);
32 extern void while_command (char *arg, int from_tty);
34 extern void if_command (char *arg, int from_tty);
36 extern void show_user_1 (struct cmd_list_element *c, struct ui_file *stream);
38 /* Exported to gdb/breakpoint.c */
40 extern enum command_control_type
41 execute_control_command (struct command_line *cmd);
43 extern void print_command_lines (struct ui_out *,
44 struct command_line *, unsigned int);
46 extern struct command_line * copy_command_lines (struct command_line *cmds);
48 struct cleanup *make_cleanup_free_command_lines (struct command_line **arg);
50 /* Exported to gdb/infrun.c */
52 extern void execute_user_command (struct cmd_list_element *c, char *args);
54 /* Exported to top.c */
56 extern void print_command_trace (const char *cmd);
58 /* Exported to event-top.c */
60 extern void reset_command_nest_depth (void);
62 #endif /* !defined (CLI_SCRIPT_H) */