aboutsummaryrefslogtreecommitdiff
path: root/gdb/mi/mi-common.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/mi/mi-common.h')
-rw-r--r--gdb/mi/mi-common.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/gdb/mi/mi-common.h b/gdb/mi/mi-common.h
index 0d39cb7..e82b4a3 100644
--- a/gdb/mi/mi-common.h
+++ b/gdb/mi/mi-common.h
@@ -19,6 +19,8 @@
#ifndef MI_COMMON_H
#define MI_COMMON_H
+struct mi_console_file;
+
/* Represents the reason why GDB is sending an asynchronous command to
the front end. NOTE: When modifing this, don't forget to update
gdb.texinfo! */
@@ -51,11 +53,11 @@ const char *async_reason_lookup (enum async_reply_reason reason);
struct mi_interp
{
/* MI's output channels */
- struct ui_file *out;
- struct ui_file *err;
- struct ui_file *log;
- struct ui_file *targ;
- struct ui_file *event_channel;
+ mi_console_file *out;
+ mi_console_file *err;
+ mi_console_file *log;
+ mi_console_file *targ;
+ mi_console_file *event_channel;
/* Raw console output. */
struct ui_file *raw_stdout;