| version 1.2, 2000/04/12 21:46:27 |
version 1.3, 2000/04/14 17:35:14 |
| Line 86 struct __window { /* Window structure. |
|
| Line 86 struct __window { /* Window structure. |
|
| attr_t battr; /* Background attributes */ |
attr_t battr; /* Background attributes */ |
| }; |
}; |
| |
|
| |
struct __winlist { |
| |
struct __window *winp; /* The window. */ |
| |
struct __winlist *nextp; /* Next window. */ |
| |
}; |
| |
|
| /* Private functions. */ |
/* Private functions. */ |
| #ifdef DEBUG |
#ifdef DEBUG |
| void __CTRACE __P((const char *, ...)); |
void __CTRACE __P((const char *, ...)); |
| Line 123 int __waddch __P((WINDOW *, __LDATA *)) |
|
| Line 128 int __waddch __P((WINDOW *, __LDATA *)) |
|
| #define max(a,b) (a > b ? a : b) |
#define max(a,b) (a > b ? a : b) |
| |
|
| /* Private externs. */ |
/* Private externs. */ |
| extern int __echoit; |
extern int __echoit; |
| extern int __endwin; |
extern int __endwin; |
| extern int __pfast; |
extern int __pfast; |
| extern int __rawmode; |
extern int __rawmode; |
| extern int __noqch; |
extern int __noqch; |
| extern attr_t __nca; |
extern attr_t __nca; |
| |
extern struct __winlist *__winlistp; |