summaryrefslogtreecommitdiff
path: root/gpxe/src/hci/mucurses/mucurses.h
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/hci/mucurses/mucurses.h')
-rw-r--r--gpxe/src/hci/mucurses/mucurses.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/gpxe/src/hci/mucurses/mucurses.h b/gpxe/src/hci/mucurses/mucurses.h
new file mode 100644
index 00000000..1476733f
--- /dev/null
+++ b/gpxe/src/hci/mucurses/mucurses.h
@@ -0,0 +1,21 @@
+#ifndef _MUCURSES_H
+#define _MUCURSES_H
+
+/** @file
+ *
+ * MuCurses core implementation specific header file
+ *
+ */
+
+#define WRAP 0
+#define NOWRAP 1
+
+extern SCREEN _ansi_screen;
+
+extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
+extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
+extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
+extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
+extern void _wcursback ( WINDOW *win ) __nonnull;
+
+#endif /* _MUCURSES_H */