mirror of
https://github.com/ipxe/ipxe
synced 2025-12-24 06:22:59 +03:00
- removed slk references
- corrected minor algo errors in primitives - added doxygen @file header
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
#ifndef CORE_H
|
||||
#define CORE_H
|
||||
|
||||
/** @file
|
||||
*
|
||||
* MuCurses core implementation specific header file
|
||||
*
|
||||
*/
|
||||
|
||||
#define WRAP 0
|
||||
#define NOWRAP 1
|
||||
|
||||
@@ -13,24 +19,6 @@ unsigned int *_COLOUR_PAIRS; /* basically this is an array, but as its
|
||||
pointer and malloc the array into being
|
||||
... */
|
||||
|
||||
struct _softlabel {
|
||||
// label string
|
||||
char *label;
|
||||
/* Format of soft label
|
||||
0: left justify
|
||||
1: centre justify
|
||||
2: right justify
|
||||
*/
|
||||
unsigned short fmt;
|
||||
};
|
||||
|
||||
struct _softlabelkeys {
|
||||
struct _softlabel fkeys[12];
|
||||
attr_t attrs;
|
||||
unsigned short fmt;
|
||||
unsigned short maxlablen;
|
||||
};
|
||||
|
||||
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 );
|
||||
|
||||
Reference in New Issue
Block a user