mirror of
https://github.com/ipxe/ipxe
synced 2025-12-20 20:10:18 +03:00
Renamed core.h to mucurses.h
This commit is contained in:
19
src/hci/mucurses/mucurses.h
Normal file
19
src/hci/mucurses/mucurses.h
Normal file
@@ -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 */
|
||||
Reference in New Issue
Block a user