aboutsummaryrefslogtreecommitdiffstats
path: root/src/hci/mucurses/mucurses.h
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2006-12-18 16:52:21 +0000
committerMichael Brown <mcb30@etherboot.org>2006-12-18 16:52:21 +0000
commit1755d8df7ad9a3f7fd69372d35805539fa4ee290 (patch)
treea150e0ef2a684d7ba9bd3832bdaa646aee510465 /src/hci/mucurses/mucurses.h
parent426e847c4c43d3b17d81b8ed60bfe0f02d6052a2 (diff)
downloadipxe-1755d8df7ad9a3f7fd69372d35805539fa4ee290.tar.gz
Renamed core.h to mucurses.h
Diffstat (limited to 'src/hci/mucurses/mucurses.h')
-rw-r--r--src/hci/mucurses/mucurses.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/hci/mucurses/mucurses.h b/src/hci/mucurses/mucurses.h
new file mode 100644
index 000000000..db6cf587f
--- /dev/null
+++ b/src/hci/mucurses/mucurses.h
@@ -0,0 +1,19 @@
+#ifndef _MUCURSES_H
+#define _MUCURSES_H
+
+/** @file
+ *
+ * MuCurses core implementation specific header file
+ *
+ */
+
+#define WRAP 0
+#define NOWRAP 1
+
+void _wputch ( WINDOW *win, chtype ch, int wrap );
+void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n );
+void _wputstr ( WINDOW *win, const char *str, int wrap, int n );
+void _wcursback ( WINDOW *win );
+int wmove ( WINDOW *win, int y, int x );
+
+#endif /* _MUCURSES_H */