diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-12-18 16:52:21 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-12-18 16:52:21 +0000 |
commit | 1755d8df7ad9a3f7fd69372d35805539fa4ee290 (patch) | |
tree | a150e0ef2a684d7ba9bd3832bdaa646aee510465 /src/hci/mucurses/mucurses.h | |
parent | 426e847c4c43d3b17d81b8ed60bfe0f02d6052a2 (diff) | |
download | ipxe-1755d8df7ad9a3f7fd69372d35805539fa4ee290.tar.gz |
Renamed core.h to mucurses.h
Diffstat (limited to 'src/hci/mucurses/mucurses.h')
-rw-r--r-- | src/hci/mucurses/mucurses.h | 19 |
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 */ |