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. |
b6ba6518 | 9 | Copyright 1992, 2000, 2001 Free Software Foundation, Inc. |
c906108c | 10 | |
c5aa993b JM |
11 | This program is free software; you can redistribute it and/or modify |
12 | it under the terms of the GNU General Public License as published by | |
13 | the Free Software Foundation; either version 2 of the License, or | |
14 | (at your option) any later version. | |
c906108c | 15 | |
c5aa993b JM |
16 | This program is distributed in the hope that it will be useful, |
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 | GNU General Public License for more details. | |
c906108c | 20 | |
c5aa993b JM |
21 | You should have received a copy of the GNU General Public License |
22 | along with this program; if not, write to the Free Software | |
23 | Foundation, Inc., 59 Temple Place - Suite 330, | |
24 | Boston, MA 02111-1307, USA. */ | |
c906108c | 25 | |
17732724 AC |
26 | #ifndef CALL_CMDS_H |
27 | #define CALL_CMDS_H | |
28 | ||
a14ed312 | 29 | extern void initialize_all_files (void); |
c906108c | 30 | |
a14ed312 | 31 | extern void core_file_command (char *, int); |
c906108c | 32 | |
a14ed312 | 33 | extern void break_command (char *, int); |
17732724 AC |
34 | |
35 | #endif |