diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/console.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/console.h b/include/console.h index 0cb62cdd..e0bf7de6 100644 --- a/include/console.h +++ b/include/console.h @@ -22,13 +22,22 @@ #define CONSOLE_H
#ifndef GDISP_NEED_CONSOLE
- #undef GDISP_NEED_CONSOLE
+ #define GDISP_NEED_CONSOLE FALSE
#endif
#if GDISP_NEED_CONSOLE
#include "gdisp.h"
+ /**
+ * @extends BaseAsynchronousChannelVMT
+ *
+ * @brief @p GConsole virtual methods table.
+ */
+struct GConsoleVMT {
+ _base_asynchronous_channel_methods
+};
+
/**
* @extends BaseAsynchronousChannel
*
|