diff options
Diffstat (limited to 'gdb/wrapper.h')
-rw-r--r-- | gdb/wrapper.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/wrapper.h b/gdb/wrapper.h index 977a77d..8507274 100644 --- a/gdb/wrapper.h +++ b/gdb/wrapper.h @@ -21,6 +21,10 @@ #include "gdb.h" struct value; +struct block; +struct expression; +struct ui_out; +struct type; /* Use this struct to pass arguments to wrapper routines. */ struct gdb_wrapper_arguments; @@ -46,4 +50,6 @@ extern int gdb_value_ind (struct value *val, struct value ** rval); extern int gdb_parse_and_eval_type (char *, int, struct type **); +extern enum gdb_rc gdb_execute_command (struct ui_out *uiout, char *command, + int from_tty); #endif /* WRAPPER_H */ |