Commit | Line | Data |
---|---|---|
d318976c FN |
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. | |
a3573618 | 6 | 2000-12-01 fnasser@redhat.com */ |
d318976c | 7 | |
c906108c | 8 | /* Prototypes for GDB commands that are called internally by other functions. |
4c38e0a4 | 9 | Copyright (C) 1992, 2000, 2001, 2007, 2008, 2009, 2010 |
0fb0cc75 | 10 | Free Software Foundation, Inc. |
c906108c | 11 | |
c5aa993b JM |
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 | |
a9762ec7 | 14 | the Free Software Foundation; either version 3 of the License, or |
c5aa993b | 15 | (at your option) any later version. |
c906108c | 16 | |
c5aa993b JM |
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. | |
c906108c | 21 | |
c5aa993b | 22 | You should have received a copy of the GNU General Public License |
a9762ec7 | 23 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
c906108c | 24 | |
17732724 AC |
25 | #ifndef CALL_CMDS_H |
26 | #define CALL_CMDS_H | |
27 | ||
a14ed312 | 28 | extern void initialize_all_files (void); |
c906108c | 29 | |
a14ed312 | 30 | extern void core_file_command (char *, int); |
c906108c | 31 | |
a14ed312 | 32 | extern void break_command (char *, int); |
17732724 AC |
33 | |
34 | #endif |