source: bootcd/isolinux/syslinux-6.03/gpxe/src/hci/mucurses/mucurses.h @ dd1be7c

Last change on this file since dd1be7c was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 588 bytes
Line 
1#ifndef _MUCURSES_H
2#define _MUCURSES_H
3
4/** @file
5 *
6 * MuCurses core implementation specific header file
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER );
11
12#define WRAP 0
13#define NOWRAP 1
14
15extern SCREEN _ansi_screen;
16
17extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
18extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
19extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
20extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
21extern void _wcursback ( WINDOW *win ) __nonnull;
22
23#endif /* _MUCURSES_H */
Note: See TracBrowser for help on using the repository browser.