| version 1.4, 2000/04/15 13:17:03 |
version 1.5, 2000/04/18 22:43:25 |
|
|
| struct __ldata { |
struct __ldata { |
| wchar_t ch; /* Character */ |
wchar_t ch; /* Character */ |
| attr_t attr; /* Attributes */ |
attr_t attr; /* Attributes */ |
| |
wchar_t bch; /* Background character */ |
| |
attr_t battr; /* Background attributes */ |
| }; |
}; |
| |
|
| #define __LDATASIZE (sizeof(__LDATA)) |
#define __LDATASIZE (sizeof(__LDATA)) |
| Line 82 struct __window { /* Window structure. |
|
| Line 84 struct __window { /* Window structure. |
|
| unsigned int flags; |
unsigned int flags; |
| int delay; /* delay for getch() */ |
int delay; /* delay for getch() */ |
| attr_t wattr; /* Character attributes */ |
attr_t wattr; /* Character attributes */ |
| wchar_t bchar; /* Background character */ |
wchar_t bch; /* Background character */ |
| attr_t battr; /* Background attributes */ |
attr_t battr; /* Background attributes */ |
| }; |
}; |
| |
|
| |
/* Set of attributes unset by 'me' - 'mb', 'md', 'mh', 'mk', 'mp' and 'mr'. */ |
| |
#define __TERMATTR \ |
| |
(__REVERSE | __BLINK | __DIM | __BOLD | __BLANK | __PROTECT) |
| |
|
| struct __winlist { |
struct __winlist { |
| struct __window *winp; /* The window. */ |
struct __window *winp; /* The window. */ |
| struct __winlist *nextp; /* Next window. */ |
struct __winlist *nextp; /* Next window. */ |