* ppc-opc.c (powerpc_opcodes) <"lswx">: Use RAX for the second and
[binutils-gdb.git] / gdb / cli / cli-cmds.h
blob068a72a6a087f40c14e30902895d5d334b12c713
1 /* Header file for GDB CLI command implementation library.
2 Copyright (c) 2000, 2006-2012 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_CMDS_H)
18 #define CLI_CMDS_H 1
20 /* Chain containing all defined commands. */
22 extern struct cmd_list_element *cmdlist;
24 /* Chain containing all defined info subcommands. */
26 extern struct cmd_list_element *infolist;
28 /* Chain containing all defined enable subcommands. */
30 extern struct cmd_list_element *enablelist;
32 /* Chain containing all defined disable subcommands. */
34 extern struct cmd_list_element *disablelist;
36 /* Chain containing all defined delete subcommands. */
38 extern struct cmd_list_element *deletelist;
40 /* Chain containing all defined detach subcommands. */
42 extern struct cmd_list_element *detachlist;
44 /* Chain containing all defined kill subcommands. */
46 extern struct cmd_list_element *killlist;
48 /* Chain containing all defined toggle subcommands. */
50 extern struct cmd_list_element *togglelist;
52 /* Chain containing all defined stop subcommands. */
54 extern struct cmd_list_element *stoplist;
56 /* Chain containing all defined set subcommands */
58 extern struct cmd_list_element *setlist;
60 /* Chain containing all defined unset subcommands */
62 extern struct cmd_list_element *unsetlist;
64 /* Chain containing all defined show subcommands. */
66 extern struct cmd_list_element *showlist;
68 /* Chain containing all defined \"set history\". */
70 extern struct cmd_list_element *sethistlist;
72 /* Chain containing all defined \"show history\". */
74 extern struct cmd_list_element *showhistlist;
76 /* Chain containing all defined \"unset history\". */
78 extern struct cmd_list_element *unsethistlist;
80 /* Chain containing all defined maintenance subcommands. */
82 extern struct cmd_list_element *maintenancelist;
84 /* Chain containing all defined "maintenance info" subcommands. */
86 extern struct cmd_list_element *maintenanceinfolist;
88 /* Chain containing all defined "maintenance print" subcommands. */
90 extern struct cmd_list_element *maintenanceprintlist;
92 extern struct cmd_list_element *setprintlist;
94 extern struct cmd_list_element *showprintlist;
96 extern struct cmd_list_element *setdebuglist;
98 extern struct cmd_list_element *showdebuglist;
100 extern struct cmd_list_element *setchecklist;
102 extern struct cmd_list_element *showchecklist;
104 /* Exported to gdb/top.c */
106 void init_cmd_lists (void);
108 void init_cli_cmds (void);
110 int is_complete_command (struct cmd_list_element *cmd);
112 /* Exported to gdb/main.c */
114 extern void cd_command (char *, int);
116 /* Exported to gdb/top.c and gdb/main.c */
118 extern void quit_command (char *, int);
120 extern void source_script (char *, int);
122 /* Exported to objfiles.c. */
124 extern int find_and_open_script (const char *file, int search_path,
125 FILE **streamp, char **full_path);
127 /* Command tracing state. */
129 extern int source_verbose;
130 extern int trace_commands;
132 #endif /* !defined (CLI_CMDS_H) */