]> ncurses.scripts.mit.edu Git - ncurses.git/blob - include/curses.h.in
ncurses 5.7 - patch 20090221
[ncurses.git] / include / curses.h.in
1 /****************************************************************************
2  * Copyright (c) 1998-2008,2009 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996-on                 *
33  ****************************************************************************/
34
35 /* $Id: curses.h.in,v 1.194 2009/02/21 22:44:41 tom Exp $ */
36
37 #ifndef __NCURSES_H
38 #define __NCURSES_H
39
40 #define CURSES 1
41 #define CURSES_H 1
42
43 /* These are defined only in curses.h, and are used for conditional compiles */
44 #define NCURSES_VERSION_MAJOR @NCURSES_MAJOR@
45 #define NCURSES_VERSION_MINOR @NCURSES_MINOR@
46 #define NCURSES_VERSION_PATCH @NCURSES_PATCH@
47
48 /* This is defined in more than one ncurses header, for identification */
49 #undef  NCURSES_VERSION
50 #define NCURSES_VERSION "@NCURSES_MAJOR@.@NCURSES_MINOR@"
51
52 /*
53  * Identify the mouse encoding version.
54  */
55 #define NCURSES_MOUSE_VERSION @NCURSES_MOUSE_VERSION@
56
57 /*
58  * Definitions to facilitate DLL's.
59  */
60 #include <ncurses_dll.h>
61
62 /*
63  * User-definable tweak to disable the include of <stdbool.h>.
64  */
65 #ifndef NCURSES_ENABLE_STDBOOL_H
66 #define NCURSES_ENABLE_STDBOOL_H @cf_cv_header_stdbool_h@
67 #endif
68
69 /*
70  * NCURSES_ATTR_T is used to quiet compiler warnings when building ncurses
71  * configured using --disable-macros.
72  */
73 #ifdef NCURSES_NOMACROS
74 #ifndef NCURSES_ATTR_T
75 #define NCURSES_ATTR_T attr_t
76 #endif
77 #endif /* NCURSES_NOMACROS */
78
79 #ifndef NCURSES_ATTR_T
80 #define NCURSES_ATTR_T int
81 #endif
82
83 /*
84  * Expands to 'const' if ncurses is configured using --enable-const.  Note that
85  * doing so makes it incompatible with other implementations of X/Open Curses.
86  */
87 #undef  NCURSES_CONST
88 #define NCURSES_CONST @NCURSES_CONST@
89
90 #undef NCURSES_INLINE
91 #define NCURSES_INLINE @NCURSES_INLINE@
92
93 /*
94  * The internal type used for color values
95  */
96 #undef  NCURSES_COLOR_T
97 #define NCURSES_COLOR_T short
98
99 /*
100  * Definition used to make WINDOW and similar structs opaque.
101  */
102 #ifndef @cf_cv_enable_opaque@
103 #define NCURSES_OPAQUE @NCURSES_OPAQUE@
104 #endif
105
106 /*
107  * The reentrant code relies on the opaque setting, but adds features.
108  */
109 #ifndef NCURSES_REENTRANT
110 #define NCURSES_REENTRANT @cf_cv_enable_reentrant@
111 #endif
112
113 /*
114  * The internal type used for window dimensions.
115  */
116 #undef  NCURSES_SIZE_T
117 #define NCURSES_SIZE_T @NCURSES_SIZE_T@
118
119 /*
120  * Control whether tparm() supports varargs or fixed-parameter list.
121  */
122 #undef NCURSES_TPARM_VARARGS
123 #define NCURSES_TPARM_VARARGS @NCURSES_TPARM_VARARGS@
124
125 /*
126  * NCURSES_CH_T is used in building the library, but not used otherwise in
127  * this header file, since that would make the normal/wide-character versions
128  * of the header incompatible.
129  */
130 #undef  NCURSES_CH_T
131 #define NCURSES_CH_T @NCURSES_CH_T@
132
133 #if @cf_cv_enable_lp64@ && defined(_LP64)
134 typedef unsigned chtype;
135 typedef unsigned mmask_t;
136 #else
137 typedef unsigned @cf_cv_typeof_chtype@ chtype;
138 typedef unsigned @cf_cv_typeof_mmask_t@ mmask_t;
139 #endif
140
141 #include <stdio.h>
142 #include <unctrl.h>
143 #include <stdarg.h>     /* we need va_list */
144 #ifdef _XOPEN_SOURCE_EXTENDED
145 #include <stddef.h>     /* we want wchar_t */
146 #endif /* _XOPEN_SOURCE_EXTENDED */
147
148 /* X/Open and SVr4 specify that curses implements 'bool'.  However, C++ may also
149  * implement it.  If so, we must use the C++ compiler's type to avoid conflict
150  * with other interfaces.
151  *
152  * A further complication is that <stdbool.h> may declare 'bool' to be a
153  * different type, such as an enum which is not necessarily compatible with
154  * C++.  If we have <stdbool.h>, make 'bool' a macro, so users may #undef it.
155  * Otherwise, let it remain a typedef to avoid conflicts with other #define's.
156  * In either case, make a typedef for NCURSES_BOOL which can be used if needed
157  * from either C or C++.
158  */
159
160 #undef TRUE
161 #define TRUE    1
162
163 #undef FALSE
164 #define FALSE   0
165
166 typedef @cf_cv_type_of_bool@ NCURSES_BOOL;
167
168 #if @USE_CXX_BOOL@      /* __cplusplus, etc. */
169
170 /* use the C++ compiler's bool type */
171 #define NCURSES_BOOL bool
172
173 #else                   /* c89, c99, etc. */
174
175 #if NCURSES_ENABLE_STDBOOL_H
176 #include <stdbool.h>
177 /* use whatever the C compiler decides bool really is */
178 #define NCURSES_BOOL bool
179 #else
180 /* there is no predefined bool - use our own */
181 #undef bool
182 #define bool NCURSES_BOOL
183 #endif
184
185 #endif /* !__cplusplus, etc. */
186
187 #ifdef __cplusplus
188 extern "C" {
189 #define NCURSES_CAST(type,value) static_cast<type>(value)
190 #else
191 #define NCURSES_CAST(type,value) (type)(value)
192 #endif
193
194 /*
195  * X/Open attributes.  In the ncurses implementation, they are identical to the
196  * A_ attributes.
197  */
198 #define WA_ATTRIBUTES   A_ATTRIBUTES
199 #define WA_NORMAL       A_NORMAL
200 #define WA_STANDOUT     A_STANDOUT
201 #define WA_UNDERLINE    A_UNDERLINE
202 #define WA_REVERSE      A_REVERSE
203 #define WA_BLINK        A_BLINK
204 #define WA_DIM          A_DIM
205 #define WA_BOLD         A_BOLD
206 #define WA_ALTCHARSET   A_ALTCHARSET
207 #define WA_INVIS        A_INVIS
208 #define WA_PROTECT      A_PROTECT
209 #define WA_HORIZONTAL   A_HORIZONTAL
210 #define WA_LEFT         A_LEFT
211 #define WA_LOW          A_LOW
212 #define WA_RIGHT        A_RIGHT
213 #define WA_TOP          A_TOP
214 #define WA_VERTICAL     A_VERTICAL
215
216 /* colors */
217 #define COLOR_BLACK     0
218 #define COLOR_RED       1
219 #define COLOR_GREEN     2
220 #define COLOR_YELLOW    3
221 #define COLOR_BLUE      4
222 #define COLOR_MAGENTA   5
223 #define COLOR_CYAN      6
224 #define COLOR_WHITE     7
225
226 /* line graphics */
227
228 #if @BROKEN_LINKER@ || NCURSES_REENTRANT
229 NCURSES_WRAPPED_VAR(chtype*, acs_map);
230 #define acs_map (_nc_acs_map())
231 #else
232 extern NCURSES_EXPORT_VAR(chtype) acs_map[];
233 #endif
234
235 #define NCURSES_ACS(c)  (acs_map[NCURSES_CAST(unsigned char,c)])
236
237 /* VT100 symbols begin here */
238 #define ACS_ULCORNER    NCURSES_ACS('l') /* upper left corner */
239 #define ACS_LLCORNER    NCURSES_ACS('m') /* lower left corner */
240 #define ACS_URCORNER    NCURSES_ACS('k') /* upper right corner */
241 #define ACS_LRCORNER    NCURSES_ACS('j') /* lower right corner */
242 #define ACS_LTEE        NCURSES_ACS('t') /* tee pointing right */
243 #define ACS_RTEE        NCURSES_ACS('u') /* tee pointing left */
244 #define ACS_BTEE        NCURSES_ACS('v') /* tee pointing up */
245 #define ACS_TTEE        NCURSES_ACS('w') /* tee pointing down */
246 #define ACS_HLINE       NCURSES_ACS('q') /* horizontal line */
247 #define ACS_VLINE       NCURSES_ACS('x') /* vertical line */
248 #define ACS_PLUS        NCURSES_ACS('n') /* large plus or crossover */
249 #define ACS_S1          NCURSES_ACS('o') /* scan line 1 */
250 #define ACS_S9          NCURSES_ACS('s') /* scan line 9 */
251 #define ACS_DIAMOND     NCURSES_ACS('`') /* diamond */
252 #define ACS_CKBOARD     NCURSES_ACS('a') /* checker board (stipple) */
253 #define ACS_DEGREE      NCURSES_ACS('f') /* degree symbol */
254 #define ACS_PLMINUS     NCURSES_ACS('g') /* plus/minus */
255 #define ACS_BULLET      NCURSES_ACS('~') /* bullet */
256 /* Teletype 5410v1 symbols begin here */
257 #define ACS_LARROW      NCURSES_ACS(',') /* arrow pointing left */
258 #define ACS_RARROW      NCURSES_ACS('+') /* arrow pointing right */
259 #define ACS_DARROW      NCURSES_ACS('.') /* arrow pointing down */
260 #define ACS_UARROW      NCURSES_ACS('-') /* arrow pointing up */
261 #define ACS_BOARD       NCURSES_ACS('h') /* board of squares */
262 #define ACS_LANTERN     NCURSES_ACS('i') /* lantern symbol */
263 #define ACS_BLOCK       NCURSES_ACS('0') /* solid square block */
264 /*
265  * These aren't documented, but a lot of System Vs have them anyway
266  * (you can spot pprryyzz{{||}} in a lot of AT&T terminfo strings).
267  * The ACS_names may not match AT&T's, our source didn't know them.
268  */
269 #define ACS_S3          NCURSES_ACS('p') /* scan line 3 */
270 #define ACS_S7          NCURSES_ACS('r') /* scan line 7 */
271 #define ACS_LEQUAL      NCURSES_ACS('y') /* less/equal */
272 #define ACS_GEQUAL      NCURSES_ACS('z') /* greater/equal */
273 #define ACS_PI          NCURSES_ACS('{') /* Pi */
274 #define ACS_NEQUAL      NCURSES_ACS('|') /* not equal */
275 #define ACS_STERLING    NCURSES_ACS('}') /* UK pound sign */
276
277 /*
278  * Line drawing ACS names are of the form ACS_trbl, where t is the top, r
279  * is the right, b is the bottom, and l is the left.  t, r, b, and l might
280  * be B (blank), S (single), D (double), or T (thick).  The subset defined
281  * here only uses B and S.
282  */
283 #define ACS_BSSB        ACS_ULCORNER
284 #define ACS_SSBB        ACS_LLCORNER
285 #define ACS_BBSS        ACS_URCORNER
286 #define ACS_SBBS        ACS_LRCORNER
287 #define ACS_SBSS        ACS_RTEE
288 #define ACS_SSSB        ACS_LTEE
289 #define ACS_SSBS        ACS_BTEE
290 #define ACS_BSSS        ACS_TTEE
291 #define ACS_BSBS        ACS_HLINE
292 #define ACS_SBSB        ACS_VLINE
293 #define ACS_SSSS        ACS_PLUS
294
295 #undef  ERR
296 #define ERR     (-1)
297
298 #undef  OK
299 #define OK      (0)
300
301 /* values for the _flags member */
302 #define _SUBWIN         0x01    /* is this a sub-window? */
303 #define _ENDLINE        0x02    /* is the window flush right? */
304 #define _FULLWIN        0x04    /* is the window full-screen? */
305 #define _SCROLLWIN      0x08    /* bottom edge is at screen bottom? */
306 #define _ISPAD          0x10    /* is this window a pad? */
307 #define _HASMOVED       0x20    /* has cursor moved since last refresh? */
308 #define _WRAPPED        0x40    /* cursor was just wrappped */
309
310 /*
311  * this value is used in the firstchar and lastchar fields to mark
312  * unchanged lines
313  */
314 #define _NOCHANGE       -1
315
316 /*
317  * this value is used in the oldindex field to mark lines created by insertions
318  * and scrolls.
319  */
320 #define _NEWINDEX       -1
321
322 typedef struct screen  SCREEN;
323 typedef struct _win_st WINDOW;
324
325 typedef chtype  attr_t;         /* ...must be at least as wide as chtype */
326
327 #ifdef _XOPEN_SOURCE_EXTENDED
328
329 #if @NCURSES_LIBUTF8@
330 #ifdef mblen                    /* libutf8.h defines it w/o undefining first */
331 #undef mblen
332 #endif
333 #include <libutf8.h>
334 #endif
335
336 #if @NEED_WCHAR_H@
337 #include <wchar.h>              /* ...to get mbstate_t, etc. */
338 #endif
339
340 #if @NCURSES_WCHAR_T@
341 typedef unsigned short wchar_t@NCURSES_OK_WCHAR_T@;
342 #endif
343
344 #if @NCURSES_WINT_T@
345 typedef unsigned int wint_t@NCURSES_OK_WCHAR_T@;
346 #endif
347
348 #define CCHARW_MAX      5
349 typedef struct
350 {
351     attr_t      attr;
352     wchar_t     chars[CCHARW_MAX];
353 #if @NCURSES_EXT_COLORS@
354 #undef NCURSES_EXT_COLORS
355 #define NCURSES_EXT_COLORS @NCURSES_PATCH@
356     int         ext_color;      /* color pair, must be more than 16-bits */
357 #endif
358 }
359 cchar_t;
360
361 #endif /* _XOPEN_SOURCE_EXTENDED */
362
363 #if !NCURSES_OPAQUE
364 struct ldat;
365
366 struct _win_st
367 {
368         NCURSES_SIZE_T _cury, _curx; /* current cursor position */
369
370         /* window location and size */
371         NCURSES_SIZE_T _maxy, _maxx; /* maximums of x and y, NOT window size */
372         NCURSES_SIZE_T _begy, _begx; /* screen coords of upper-left-hand corner */
373
374         short   _flags;         /* window state flags */
375
376         /* attribute tracking */
377         attr_t  _attrs;         /* current attribute for non-space character */
378         chtype  _bkgd;          /* current background char/attribute pair */
379
380         /* option values set by user */
381         bool    _notimeout;     /* no time out on function-key entry? */
382         bool    _clear;         /* consider all data in the window invalid? */
383         bool    _leaveok;       /* OK to not reset cursor on exit? */
384         bool    _scroll;        /* OK to scroll this window? */
385         bool    _idlok;         /* OK to use insert/delete line? */
386         bool    _idcok;         /* OK to use insert/delete char? */
387         bool    _immed;         /* window in immed mode? (not yet used) */
388         bool    _sync;          /* window in sync mode? */
389         bool    _use_keypad;    /* process function keys into KEY_ symbols? */
390         int     _delay;         /* 0 = nodelay, <0 = blocking, >0 = delay */
391
392         struct ldat *_line;     /* the actual line data */
393
394         /* global screen state */
395         NCURSES_SIZE_T _regtop; /* top line of scrolling region */
396         NCURSES_SIZE_T _regbottom; /* bottom line of scrolling region */
397
398         /* these are used only if this is a sub-window */
399         int     _parx;          /* x coordinate of this window in parent */
400         int     _pary;          /* y coordinate of this window in parent */
401         WINDOW  *_parent;       /* pointer to parent if a sub-window */
402
403         /* these are used only if this is a pad */
404         struct pdat
405         {
406             NCURSES_SIZE_T _pad_y,      _pad_x;
407             NCURSES_SIZE_T _pad_top,    _pad_left;
408             NCURSES_SIZE_T _pad_bottom, _pad_right;
409         } _pad;
410
411         NCURSES_SIZE_T _yoffset; /* real begy is _begy + _yoffset */
412
413 #ifdef _XOPEN_SOURCE_EXTENDED
414         cchar_t  _bkgrnd;       /* current background char/attribute pair */
415 #if @NCURSES_EXT_COLORS@
416         int     _color;         /* current color-pair for non-space character */
417 #endif
418 #endif
419 };
420 #endif /* NCURSES_OPAQUE */
421
422 /*
423  * This is an extension to support events...
424  */
425 #if @NCURSES_EXT_FUNCS@
426 #ifdef NCURSES_WGETCH_EVENTS
427 #if !defined(__BEOS__) || defined(__HAIKU__)
428    /* Fix _nc_timed_wait() on BEOS... */
429 #  define NCURSES_EVENT_VERSION 1
430 #endif  /* !defined(__BEOS__) */
431
432 /*
433  * Bits to set in _nc_event.data.flags
434  */
435 #  define _NC_EVENT_TIMEOUT_MSEC        1
436 #  define _NC_EVENT_FILE                2
437 #  define _NC_EVENT_FILE_READABLE       2
438 #  if 0                                 /* Not supported yet... */
439 #    define _NC_EVENT_FILE_WRITABLE     4
440 #    define _NC_EVENT_FILE_EXCEPTION    8
441 #  endif
442
443 typedef struct
444 {
445     int type;
446     union
447     {
448         long timeout_msec;      /* _NC_EVENT_TIMEOUT_MSEC */
449         struct
450         {
451             unsigned int flags;
452             int fd;
453             unsigned int result;
454         } fev;                          /* _NC_EVENT_FILE */
455     } data;
456 } _nc_event;
457
458 typedef struct
459 {
460     int count;
461     int result_flags;   /* _NC_EVENT_TIMEOUT_MSEC or _NC_EVENT_FILE_READABLE */
462     _nc_event *events[1];
463 } _nc_eventlist;
464
465 extern NCURSES_EXPORT(int) wgetch_events(WINDOW *, _nc_eventlist *);    /* experimental */
466 extern NCURSES_EXPORT(int) wgetnstr_events(WINDOW *,char *,int,_nc_eventlist *);/* experimental */
467
468 #endif /* NCURSES_WGETCH_EVENTS */
469 #endif /* NCURSES_EXT_FUNCS */
470
471 /*
472  * GCC (and some other compilers) define '__attribute__'; we're using this
473  * macro to alert the compiler to flag inconsistencies in printf/scanf-like
474  * function calls.  Just in case '__attribute__' isn't defined, make a dummy.
475  * Old versions of G++ do not accept it anyway, at least not consistently with
476  * GCC.
477  */
478 #if !(defined(__GNUC__) || defined(__GNUG__) || defined(__attribute__))
479 #define __attribute__(p) /* nothing */
480 #endif
481
482 /*
483  * We cannot define these in ncurses_cfg.h, since they require parameters to be
484  * passed (that is non-portable).  If you happen to be using gcc with warnings
485  * enabled, define
486  *      GCC_PRINTF
487  *      GCC_SCANF
488  * to improve checking of calls to printw(), etc.
489  */
490 #ifndef GCC_PRINTFLIKE
491 #if defined(GCC_PRINTF) && !defined(printf)
492 #define GCC_PRINTFLIKE(fmt,var) __attribute__((format(printf,fmt,var)))
493 #else
494 #define GCC_PRINTFLIKE(fmt,var) /*nothing*/
495 #endif
496 #endif
497
498 #ifndef GCC_SCANFLIKE
499 #if defined(GCC_SCANF) && !defined(scanf)
500 #define GCC_SCANFLIKE(fmt,var)  __attribute__((format(scanf,fmt,var)))
501 #else
502 #define GCC_SCANFLIKE(fmt,var)  /*nothing*/
503 #endif
504 #endif
505
506 #ifndef GCC_NORETURN
507 #define GCC_NORETURN /* nothing */
508 #endif
509
510 #ifndef GCC_UNUSED
511 #define GCC_UNUSED /* nothing */
512 #endif
513
514 /*
515  * Function prototypes.  This is the complete X/Open Curses list of required
516  * functions.  Those marked `generated' will have sources generated from the
517  * macro definitions later in this file, in order to satisfy XPG4.2
518  * requirements.
519  */
520
521 extern NCURSES_EXPORT(int) addch (const chtype);                        /* generated */
522 extern NCURSES_EXPORT(int) addchnstr (const chtype *, int);             /* generated */
523 extern NCURSES_EXPORT(int) addchstr (const chtype *);                   /* generated */
524 extern NCURSES_EXPORT(int) addnstr (const char *, int);                 /* generated */
525 extern NCURSES_EXPORT(int) addstr (const char *);                       /* generated */
526 extern NCURSES_EXPORT(int) attroff (NCURSES_ATTR_T);                    /* generated */
527 extern NCURSES_EXPORT(int) attron (NCURSES_ATTR_T);                     /* generated */
528 extern NCURSES_EXPORT(int) attrset (NCURSES_ATTR_T);                    /* generated */
529 extern NCURSES_EXPORT(int) attr_get (attr_t *, short *, void *);        /* generated */
530 extern NCURSES_EXPORT(int) attr_off (attr_t, void *);                   /* generated */
531 extern NCURSES_EXPORT(int) attr_on (attr_t, void *);                    /* generated */
532 extern NCURSES_EXPORT(int) attr_set (attr_t, short, void *);            /* generated */
533 extern NCURSES_EXPORT(int) baudrate (void);                             /* implemented */
534 extern NCURSES_EXPORT(int) beep  (void);                                /* implemented */
535 extern NCURSES_EXPORT(int) bkgd (chtype);                               /* generated */
536 extern NCURSES_EXPORT(void) bkgdset (chtype);                           /* generated */
537 extern NCURSES_EXPORT(int) border (chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype);    /* generated */
538 extern NCURSES_EXPORT(int) box (WINDOW *, chtype, chtype);              /* generated */
539 extern NCURSES_EXPORT(bool) can_change_color (void);                    /* implemented */
540 extern NCURSES_EXPORT(int) cbreak (void);                               /* implemented */
541 extern NCURSES_EXPORT(int) chgat (int, attr_t, short, const void *);    /* generated */
542 extern NCURSES_EXPORT(int) clear (void);                                /* generated */
543 extern NCURSES_EXPORT(int) clearok (WINDOW *,bool);                     /* implemented */
544 extern NCURSES_EXPORT(int) clrtobot (void);                             /* generated */
545 extern NCURSES_EXPORT(int) clrtoeol (void);                             /* generated */
546 extern NCURSES_EXPORT(int) color_content (short,short*,short*,short*);  /* implemented */
547 extern NCURSES_EXPORT(int) color_set (short,void*);                     /* generated */
548 extern NCURSES_EXPORT(int) COLOR_PAIR (int);                            /* generated */
549 extern NCURSES_EXPORT(int) copywin (const WINDOW*,WINDOW*,int,int,int,int,int,int,int); /* implemented */
550 extern NCURSES_EXPORT(int) curs_set (int);                              /* implemented */
551 extern NCURSES_EXPORT(int) def_prog_mode (void);                        /* implemented */
552 extern NCURSES_EXPORT(int) def_shell_mode (void);                       /* implemented */
553 extern NCURSES_EXPORT(int) delay_output (int);                          /* implemented */
554 extern NCURSES_EXPORT(int) delch (void);                                /* generated */
555 extern NCURSES_EXPORT(void) delscreen (SCREEN *);                       /* implemented */
556 extern NCURSES_EXPORT(int) delwin (WINDOW *);                           /* implemented */
557 extern NCURSES_EXPORT(int) deleteln (void);                             /* generated */
558 extern NCURSES_EXPORT(WINDOW *) derwin (WINDOW *,int,int,int,int);      /* implemented */
559 extern NCURSES_EXPORT(int) doupdate (void);                             /* implemented */
560 extern NCURSES_EXPORT(WINDOW *) dupwin (WINDOW *);                      /* implemented */
561 extern NCURSES_EXPORT(int) echo (void);                                 /* implemented */
562 extern NCURSES_EXPORT(int) echochar (const chtype);                     /* generated */
563 extern NCURSES_EXPORT(int) erase (void);                                /* generated */
564 extern NCURSES_EXPORT(int) endwin (void);                               /* implemented */
565 extern NCURSES_EXPORT(char) erasechar (void);                           /* implemented */
566 extern NCURSES_EXPORT(void) filter (void);                              /* implemented */
567 extern NCURSES_EXPORT(int) flash (void);                                /* implemented */
568 extern NCURSES_EXPORT(int) flushinp (void);                             /* implemented */
569 extern NCURSES_EXPORT(chtype) getbkgd (WINDOW *);                       /* generated */
570 extern NCURSES_EXPORT(int) getch (void);                                /* generated */
571 extern NCURSES_EXPORT(int) getnstr (char *, int);                       /* generated */
572 extern NCURSES_EXPORT(int) getstr (char *);                             /* generated */
573 extern NCURSES_EXPORT(WINDOW *) getwin (FILE *);                        /* implemented */
574 extern NCURSES_EXPORT(int) halfdelay (int);                             /* implemented */
575 extern NCURSES_EXPORT(bool) has_colors (void);                          /* implemented */
576 extern NCURSES_EXPORT(bool) has_ic (void);                              /* implemented */
577 extern NCURSES_EXPORT(bool) has_il (void);                              /* implemented */
578 extern NCURSES_EXPORT(int) hline (chtype, int);                         /* generated */
579 extern NCURSES_EXPORT(void) idcok (WINDOW *, bool);                     /* implemented */
580 extern NCURSES_EXPORT(int) idlok (WINDOW *, bool);                      /* implemented */
581 extern NCURSES_EXPORT(void) immedok (WINDOW *, bool);                   /* implemented */
582 extern NCURSES_EXPORT(chtype) inch (void);                              /* generated */
583 extern NCURSES_EXPORT(int) inchnstr (chtype *, int);                    /* generated */
584 extern NCURSES_EXPORT(int) inchstr (chtype *);                          /* generated */
585 extern NCURSES_EXPORT(WINDOW *) initscr (void);                         /* implemented */
586 extern NCURSES_EXPORT(int) init_color (short,short,short,short);        /* implemented */
587 extern NCURSES_EXPORT(int) init_pair (short,short,short);               /* implemented */
588 extern NCURSES_EXPORT(int) innstr (char *, int);                        /* generated */
589 extern NCURSES_EXPORT(int) insch (chtype);                              /* generated */
590 extern NCURSES_EXPORT(int) insdelln (int);                              /* generated */
591 extern NCURSES_EXPORT(int) insertln (void);                             /* generated */
592 extern NCURSES_EXPORT(int) insnstr (const char *, int);                 /* generated */
593 extern NCURSES_EXPORT(int) insstr (const char *);                       /* generated */
594 extern NCURSES_EXPORT(int) instr (char *);                              /* generated */
595 extern NCURSES_EXPORT(int) intrflush (WINDOW *,bool);                   /* implemented */
596 extern NCURSES_EXPORT(bool) isendwin (void);                            /* implemented */
597 extern NCURSES_EXPORT(bool) is_linetouched (WINDOW *,int);              /* implemented */
598 extern NCURSES_EXPORT(bool) is_wintouched (WINDOW *);                   /* implemented */
599 extern NCURSES_EXPORT(NCURSES_CONST char *) keyname (int);              /* implemented */
600 extern NCURSES_EXPORT(int) keypad (WINDOW *,bool);                      /* implemented */
601 extern NCURSES_EXPORT(char) killchar (void);                            /* implemented */
602 extern NCURSES_EXPORT(int) leaveok (WINDOW *,bool);                     /* implemented */
603 extern NCURSES_EXPORT(char *) longname (void);                          /* implemented */
604 extern NCURSES_EXPORT(int) meta (WINDOW *,bool);                        /* implemented */
605 extern NCURSES_EXPORT(int) move (int, int);                             /* generated */
606 extern NCURSES_EXPORT(int) mvaddch (int, int, const chtype);            /* generated */
607 extern NCURSES_EXPORT(int) mvaddchnstr (int, int, const chtype *, int); /* generated */
608 extern NCURSES_EXPORT(int) mvaddchstr (int, int, const chtype *);       /* generated */
609 extern NCURSES_EXPORT(int) mvaddnstr (int, int, const char *, int);     /* generated */
610 extern NCURSES_EXPORT(int) mvaddstr (int, int, const char *);           /* generated */
611 extern NCURSES_EXPORT(int) mvchgat (int, int, int, attr_t, short, const void *);        /* generated */
612 extern NCURSES_EXPORT(int) mvcur (int,int,int,int);                     /* implemented */
613 extern NCURSES_EXPORT(int) mvdelch (int, int);                          /* generated */
614 extern NCURSES_EXPORT(int) mvderwin (WINDOW *, int, int);               /* implemented */
615 extern NCURSES_EXPORT(int) mvgetch (int, int);                          /* generated */
616 extern NCURSES_EXPORT(int) mvgetnstr (int, int, char *, int);           /* generated */
617 extern NCURSES_EXPORT(int) mvgetstr (int, int, char *);                 /* generated */
618 extern NCURSES_EXPORT(int) mvhline (int, int, chtype, int);             /* generated */
619 extern NCURSES_EXPORT(chtype) mvinch (int, int);                        /* generated */
620 extern NCURSES_EXPORT(int) mvinchnstr (int, int, chtype *, int);        /* generated */
621 extern NCURSES_EXPORT(int) mvinchstr (int, int, chtype *);              /* generated */
622 extern NCURSES_EXPORT(int) mvinnstr (int, int, char *, int);            /* generated */
623 extern NCURSES_EXPORT(int) mvinsch (int, int, chtype);                  /* generated */
624 extern NCURSES_EXPORT(int) mvinsnstr (int, int, const char *, int);     /* generated */
625 extern NCURSES_EXPORT(int) mvinsstr (int, int, const char *);           /* generated */
626 extern NCURSES_EXPORT(int) mvinstr (int, int, char *);                  /* generated */
627 extern NCURSES_EXPORT(int) mvprintw (int,int, const char *,...)         /* implemented */
628                 GCC_PRINTFLIKE(3,4);
629 extern NCURSES_EXPORT(int) mvscanw (int,int, NCURSES_CONST char *,...)  /* implemented */
630                 GCC_SCANFLIKE(3,4);
631 extern NCURSES_EXPORT(int) mvvline (int, int, chtype, int);             /* generated */
632 extern NCURSES_EXPORT(int) mvwaddch (WINDOW *, int, int, const chtype); /* generated */
633 extern NCURSES_EXPORT(int) mvwaddchnstr (WINDOW *, int, int, const chtype *, int);/* generated */
634 extern NCURSES_EXPORT(int) mvwaddchstr (WINDOW *, int, int, const chtype *);    /* generated */
635 extern NCURSES_EXPORT(int) mvwaddnstr (WINDOW *, int, int, const char *, int);  /* generated */
636 extern NCURSES_EXPORT(int) mvwaddstr (WINDOW *, int, int, const char *);        /* generated */
637 extern NCURSES_EXPORT(int) mvwchgat (WINDOW *, int, int, int, attr_t, short, const void *);/* generated */
638 extern NCURSES_EXPORT(int) mvwdelch (WINDOW *, int, int);               /* generated */
639 extern NCURSES_EXPORT(int) mvwgetch (WINDOW *, int, int);               /* generated */
640 extern NCURSES_EXPORT(int) mvwgetnstr (WINDOW *, int, int, char *, int);        /* generated */
641 extern NCURSES_EXPORT(int) mvwgetstr (WINDOW *, int, int, char *);      /* generated */
642 extern NCURSES_EXPORT(int) mvwhline (WINDOW *, int, int, chtype, int);  /* generated */
643 extern NCURSES_EXPORT(int) mvwin (WINDOW *,int,int);                    /* implemented */
644 extern NCURSES_EXPORT(chtype) mvwinch (WINDOW *, int, int);                     /* generated */
645 extern NCURSES_EXPORT(int) mvwinchnstr (WINDOW *, int, int, chtype *, int);     /* generated */
646 extern NCURSES_EXPORT(int) mvwinchstr (WINDOW *, int, int, chtype *);           /* generated */
647 extern NCURSES_EXPORT(int) mvwinnstr (WINDOW *, int, int, char *, int);         /* generated */
648 extern NCURSES_EXPORT(int) mvwinsch (WINDOW *, int, int, chtype);               /* generated */
649 extern NCURSES_EXPORT(int) mvwinsnstr (WINDOW *, int, int, const char *, int);  /* generated */
650 extern NCURSES_EXPORT(int) mvwinsstr (WINDOW *, int, int, const char *);        /* generated */
651 extern NCURSES_EXPORT(int) mvwinstr (WINDOW *, int, int, char *);               /* generated */
652 extern NCURSES_EXPORT(int) mvwprintw (WINDOW*,int,int, const char *,...)        /* implemented */
653                 GCC_PRINTFLIKE(4,5);
654 extern NCURSES_EXPORT(int) mvwscanw (WINDOW *,int,int, NCURSES_CONST char *,...)        /* implemented */
655                 GCC_SCANFLIKE(4,5);
656 extern NCURSES_EXPORT(int) mvwvline (WINDOW *,int, int, chtype, int);   /* generated */
657 extern NCURSES_EXPORT(int) napms (int);                                 /* implemented */
658 extern NCURSES_EXPORT(WINDOW *) newpad (int,int);                       /* implemented */
659 extern NCURSES_EXPORT(SCREEN *) newterm (NCURSES_CONST char *,FILE *,FILE *);   /* implemented */
660 extern NCURSES_EXPORT(WINDOW *) newwin (int,int,int,int);               /* implemented */
661 extern NCURSES_EXPORT(int) nl (void);                                   /* implemented */
662 extern NCURSES_EXPORT(int) nocbreak (void);                             /* implemented */
663 extern NCURSES_EXPORT(int) nodelay (WINDOW *,bool);                     /* implemented */
664 extern NCURSES_EXPORT(int) noecho (void);                               /* implemented */
665 extern NCURSES_EXPORT(int) nonl (void);                                 /* implemented */
666 extern NCURSES_EXPORT(void) noqiflush (void);                           /* implemented */
667 extern NCURSES_EXPORT(int) noraw (void);                                /* implemented */
668 extern NCURSES_EXPORT(int) notimeout (WINDOW *,bool);                   /* implemented */
669 extern NCURSES_EXPORT(int) overlay (const WINDOW*,WINDOW *);            /* implemented */
670 extern NCURSES_EXPORT(int) overwrite (const WINDOW*,WINDOW *);          /* implemented */
671 extern NCURSES_EXPORT(int) pair_content (short,short*,short*);          /* implemented */
672 extern NCURSES_EXPORT(int) PAIR_NUMBER (int);                           /* generated */
673 extern NCURSES_EXPORT(int) pechochar (WINDOW *, const chtype);          /* implemented */
674 extern NCURSES_EXPORT(int) pnoutrefresh (WINDOW*,int,int,int,int,int,int);/* implemented */
675 extern NCURSES_EXPORT(int) prefresh (WINDOW *,int,int,int,int,int,int); /* implemented */
676 extern NCURSES_EXPORT(int) printw (const char *,...)                    /* implemented */
677                 GCC_PRINTFLIKE(1,2);
678 extern NCURSES_EXPORT(int) putwin (WINDOW *, FILE *);                   /* implemented */
679 extern NCURSES_EXPORT(void) qiflush (void);                             /* implemented */
680 extern NCURSES_EXPORT(int) raw (void);                                  /* implemented */
681 extern NCURSES_EXPORT(int) redrawwin (WINDOW *);                        /* generated */
682 extern NCURSES_EXPORT(int) refresh (void);                              /* generated */
683 extern NCURSES_EXPORT(int) resetty (void);                              /* implemented */
684 extern NCURSES_EXPORT(int) reset_prog_mode (void);                      /* implemented */
685 extern NCURSES_EXPORT(int) reset_shell_mode (void);                     /* implemented */
686 extern NCURSES_EXPORT(int) ripoffline (int, int (*)(WINDOW *, int));    /* implemented */
687 extern NCURSES_EXPORT(int) savetty (void);                              /* implemented */
688 extern NCURSES_EXPORT(int) scanw (NCURSES_CONST char *,...)             /* implemented */
689                 GCC_SCANFLIKE(1,2);
690 extern NCURSES_EXPORT(int) scr_dump (const char *);                     /* implemented */
691 extern NCURSES_EXPORT(int) scr_init (const char *);                     /* implemented */
692 extern NCURSES_EXPORT(int) scrl (int);                                  /* generated */
693 extern NCURSES_EXPORT(int) scroll (WINDOW *);                           /* generated */
694 extern NCURSES_EXPORT(int) scrollok (WINDOW *,bool);                    /* implemented */
695 extern NCURSES_EXPORT(int) scr_restore (const char *);                  /* implemented */
696 extern NCURSES_EXPORT(int) scr_set (const char *);                      /* implemented */
697 extern NCURSES_EXPORT(int) setscrreg (int,int);                         /* generated */
698 extern NCURSES_EXPORT(SCREEN *) set_term (SCREEN *);                    /* implemented */
699 extern NCURSES_EXPORT(int) slk_attroff (const chtype);                  /* implemented */
700 extern NCURSES_EXPORT(int) slk_attr_off (const attr_t, void *);         /* generated:WIDEC */
701 extern NCURSES_EXPORT(int) slk_attron (const chtype);                   /* implemented */
702 extern NCURSES_EXPORT(int) slk_attr_on (attr_t,void*);                  /* generated:WIDEC */
703 extern NCURSES_EXPORT(int) slk_attrset (const chtype);                  /* implemented */
704 extern NCURSES_EXPORT(attr_t) slk_attr (void);                          /* implemented */
705 extern NCURSES_EXPORT(int) slk_attr_set (const attr_t,short,void*);     /* implemented */
706 extern NCURSES_EXPORT(int) slk_clear (void);                            /* implemented */
707 extern NCURSES_EXPORT(int) slk_color (short);                           /* implemented */
708 extern NCURSES_EXPORT(int) slk_init (int);                              /* implemented */
709 extern NCURSES_EXPORT(char *) slk_label (int);                          /* implemented */
710 extern NCURSES_EXPORT(int) slk_noutrefresh (void);                      /* implemented */
711 extern NCURSES_EXPORT(int) slk_refresh (void);                          /* implemented */
712 extern NCURSES_EXPORT(int) slk_restore (void);                          /* implemented */
713 extern NCURSES_EXPORT(int) slk_set (int,const char *,int);              /* implemented */
714 extern NCURSES_EXPORT(int) slk_touch (void);                            /* implemented */
715 extern NCURSES_EXPORT(int) standout (void);                             /* generated */
716 extern NCURSES_EXPORT(int) standend (void);                             /* generated */
717 extern NCURSES_EXPORT(int) start_color (void);                          /* implemented */
718 extern NCURSES_EXPORT(WINDOW *) subpad (WINDOW *, int, int, int, int);  /* implemented */
719 extern NCURSES_EXPORT(WINDOW *) subwin (WINDOW *, int, int, int, int);  /* implemented */
720 extern NCURSES_EXPORT(int) syncok (WINDOW *, bool);                     /* implemented */
721 extern NCURSES_EXPORT(chtype) termattrs (void);                         /* implemented */
722 extern NCURSES_EXPORT(char *) termname (void);                          /* implemented */
723 extern NCURSES_EXPORT(void) timeout (int);                              /* generated */
724 extern NCURSES_EXPORT(int) touchline (WINDOW *, int, int);              /* generated */
725 extern NCURSES_EXPORT(int) touchwin (WINDOW *);                         /* generated */
726 extern NCURSES_EXPORT(int) typeahead (int);                             /* implemented */
727 extern NCURSES_EXPORT(int) ungetch (int);                               /* implemented */
728 extern NCURSES_EXPORT(int) untouchwin (WINDOW *);                       /* generated */
729 extern NCURSES_EXPORT(void) use_env (bool);                             /* implemented */
730 extern NCURSES_EXPORT(int) vidattr (chtype);                            /* implemented */
731 extern NCURSES_EXPORT(int) vidputs (chtype, int (*)(int));              /* implemented */
732 extern NCURSES_EXPORT(int) vline (chtype, int);                         /* generated */
733 extern NCURSES_EXPORT(int) vwprintw (WINDOW *, const char *,va_list);   /* implemented */
734 extern NCURSES_EXPORT(int) vw_printw (WINDOW *, const char *,va_list);  /* generated */
735 extern NCURSES_EXPORT(int) vwscanw (WINDOW *, NCURSES_CONST char *,va_list);    /* implemented */
736 extern NCURSES_EXPORT(int) vw_scanw (WINDOW *, NCURSES_CONST char *,va_list);   /* generated */
737 extern NCURSES_EXPORT(int) waddch (WINDOW *, const chtype);             /* implemented */
738 extern NCURSES_EXPORT(int) waddchnstr (WINDOW *,const chtype *,int);    /* implemented */
739 extern NCURSES_EXPORT(int) waddchstr (WINDOW *,const chtype *);         /* generated */
740 extern NCURSES_EXPORT(int) waddnstr (WINDOW *,const char *,int);        /* implemented */
741 extern NCURSES_EXPORT(int) waddstr (WINDOW *,const char *);             /* generated */
742 extern NCURSES_EXPORT(int) wattron (WINDOW *, int);                     /* generated */
743 extern NCURSES_EXPORT(int) wattroff (WINDOW *, int);                    /* generated */
744 extern NCURSES_EXPORT(int) wattrset (WINDOW *, int);                    /* generated */
745 extern NCURSES_EXPORT(int) wattr_get (WINDOW *, attr_t *, short *, void *);     /* generated */
746 extern NCURSES_EXPORT(int) wattr_on (WINDOW *, attr_t, void *);         /* implemented */
747 extern NCURSES_EXPORT(int) wattr_off (WINDOW *, attr_t, void *);        /* implemented */
748 extern NCURSES_EXPORT(int) wattr_set (WINDOW *, attr_t, short, void *); /* generated */
749 extern NCURSES_EXPORT(int) wbkgd (WINDOW *, chtype);                    /* implemented */
750 extern NCURSES_EXPORT(void) wbkgdset (WINDOW *,chtype);                 /* implemented */
751 extern NCURSES_EXPORT(int) wborder (WINDOW *,chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype);  /* implemented */
752 extern NCURSES_EXPORT(int) wchgat (WINDOW *, int, attr_t, short, const void *);/* implemented */
753 extern NCURSES_EXPORT(int) wclear (WINDOW *);                           /* implemented */
754 extern NCURSES_EXPORT(int) wclrtobot (WINDOW *);                        /* implemented */
755 extern NCURSES_EXPORT(int) wclrtoeol (WINDOW *);                        /* implemented */
756 extern NCURSES_EXPORT(int) wcolor_set (WINDOW*,short,void*);            /* implemented */
757 extern NCURSES_EXPORT(void) wcursyncup (WINDOW *);                      /* implemented */
758 extern NCURSES_EXPORT(int) wdelch (WINDOW *);                           /* implemented */
759 extern NCURSES_EXPORT(int) wdeleteln (WINDOW *);                        /* generated */
760 extern NCURSES_EXPORT(int) wechochar (WINDOW *, const chtype);          /* implemented */
761 extern NCURSES_EXPORT(int) werase (WINDOW *);                           /* implemented */
762 extern NCURSES_EXPORT(int) wgetch (WINDOW *);                           /* implemented */
763 extern NCURSES_EXPORT(int) wgetnstr (WINDOW *,char *,int);              /* implemented */
764 extern NCURSES_EXPORT(int) wgetstr (WINDOW *, char *);                  /* generated */
765 extern NCURSES_EXPORT(int) whline (WINDOW *, chtype, int);              /* implemented */
766 extern NCURSES_EXPORT(chtype) winch (WINDOW *);                         /* implemented */
767 extern NCURSES_EXPORT(int) winchnstr (WINDOW *, chtype *, int);         /* implemented */
768 extern NCURSES_EXPORT(int) winchstr (WINDOW *, chtype *);               /* generated */
769 extern NCURSES_EXPORT(int) winnstr (WINDOW *, char *, int);             /* implemented */
770 extern NCURSES_EXPORT(int) winsch (WINDOW *, chtype);                   /* implemented */
771 extern NCURSES_EXPORT(int) winsdelln (WINDOW *,int);                    /* implemented */
772 extern NCURSES_EXPORT(int) winsertln (WINDOW *);                        /* generated */
773 extern NCURSES_EXPORT(int) winsnstr (WINDOW *, const char *,int);       /* implemented */
774 extern NCURSES_EXPORT(int) winsstr (WINDOW *, const char *);            /* generated */
775 extern NCURSES_EXPORT(int) winstr (WINDOW *, char *);                   /* generated */
776 extern NCURSES_EXPORT(int) wmove (WINDOW *,int,int);                    /* implemented */
777 extern NCURSES_EXPORT(int) wnoutrefresh (WINDOW *);                     /* implemented */
778 extern NCURSES_EXPORT(int) wprintw (WINDOW *, const char *,...)         /* implemented */
779                 GCC_PRINTFLIKE(2,3);
780 extern NCURSES_EXPORT(int) wredrawln (WINDOW *,int,int);                /* implemented */
781 extern NCURSES_EXPORT(int) wrefresh (WINDOW *);                         /* implemented */
782 extern NCURSES_EXPORT(int) wscanw (WINDOW *, NCURSES_CONST char *,...)  /* implemented */
783                 GCC_SCANFLIKE(2,3);
784 extern NCURSES_EXPORT(int) wscrl (WINDOW *,int);                        /* implemented */
785 extern NCURSES_EXPORT(int) wsetscrreg (WINDOW *,int,int);               /* implemented */
786 extern NCURSES_EXPORT(int) wstandout (WINDOW *);                        /* generated */
787 extern NCURSES_EXPORT(int) wstandend (WINDOW *);                        /* generated */
788 extern NCURSES_EXPORT(void) wsyncdown (WINDOW *);                       /* implemented */
789 extern NCURSES_EXPORT(void) wsyncup (WINDOW *);                         /* implemented */
790 extern NCURSES_EXPORT(void) wtimeout (WINDOW *,int);                    /* implemented */
791 extern NCURSES_EXPORT(int) wtouchln (WINDOW *,int,int,int);             /* implemented */
792 extern NCURSES_EXPORT(int) wvline (WINDOW *,chtype,int);                /* implemented */
793
794 /*
795  * These are also declared in <term.h>:
796  */
797 extern NCURSES_EXPORT(int) tigetflag (NCURSES_CONST char *);            /* implemented */
798 extern NCURSES_EXPORT(int) tigetnum (NCURSES_CONST char *);             /* implemented */
799 extern NCURSES_EXPORT(char *) tigetstr (NCURSES_CONST char *);          /* implemented */
800 extern NCURSES_EXPORT(int) putp (const char *);                         /* implemented */
801
802 #if NCURSES_TPARM_VARARGS
803 extern NCURSES_EXPORT(char *) tparm (NCURSES_CONST char *, ...);        /* special */
804 #else
805 extern NCURSES_EXPORT(char *) tparm (NCURSES_CONST char *, long,long,long,long,long,long,long,long,long);       /* special */
806 extern NCURSES_EXPORT(char *) tparm_varargs (NCURSES_CONST char *, ...);        /* special */
807 #endif
808
809 /*
810  * These functions are not in X/Open, but we use them in macro definitions:
811  */
812 extern NCURSES_EXPORT(int) getattrs (const WINDOW *);                   /* generated */
813 extern NCURSES_EXPORT(int) getcurx (const WINDOW *);                    /* generated */
814 extern NCURSES_EXPORT(int) getcury (const WINDOW *);                    /* generated */
815 extern NCURSES_EXPORT(int) getbegx (const WINDOW *);                    /* generated */
816 extern NCURSES_EXPORT(int) getbegy (const WINDOW *);                    /* generated */
817 extern NCURSES_EXPORT(int) getmaxx (const WINDOW *);                    /* generated */
818 extern NCURSES_EXPORT(int) getmaxy (const WINDOW *);                    /* generated */
819 extern NCURSES_EXPORT(int) getparx (const WINDOW *);                    /* generated */
820 extern NCURSES_EXPORT(int) getpary (const WINDOW *);                    /* generated */
821
822 /*
823  * vid_attr() was implemented originally based on a draft of X/Open curses.
824  */
825 #ifndef _XOPEN_SOURCE_EXTENDED
826 #define vid_attr(a,pair,opts) vidattr(a)
827 #endif
828
829 /*
830  * These functions are extensions - not in X/Open Curses.
831  */
832 #if @NCURSES_EXT_FUNCS@
833 #undef  NCURSES_EXT_FUNCS
834 #define NCURSES_EXT_FUNCS @NCURSES_PATCH@
835 typedef int (*NCURSES_WINDOW_CB)(WINDOW *, void *);
836 typedef int (*NCURSES_SCREEN_CB)(SCREEN *, void *);
837 extern NCURSES_EXPORT(bool) is_term_resized (int, int);
838 extern NCURSES_EXPORT(char *) keybound (int, int);
839 extern NCURSES_EXPORT(const char *) curses_version (void);
840 extern NCURSES_EXPORT(int) assume_default_colors (int, int);
841 extern NCURSES_EXPORT(int) define_key (const char *, int);
842 extern NCURSES_EXPORT(int) key_defined (const char *);
843 extern NCURSES_EXPORT(int) keyok (int, bool);
844 extern NCURSES_EXPORT(int) resize_term (int, int);
845 extern NCURSES_EXPORT(int) resizeterm (int, int);
846 extern NCURSES_EXPORT(int) set_escdelay (int);
847 extern NCURSES_EXPORT(int) set_tabsize (int);
848 extern NCURSES_EXPORT(int) use_default_colors (void);
849 extern NCURSES_EXPORT(int) use_extended_names (bool);
850 extern NCURSES_EXPORT(int) use_legacy_coding (int);
851 extern NCURSES_EXPORT(int) use_screen (SCREEN *, NCURSES_SCREEN_CB, void *);
852 extern NCURSES_EXPORT(int) use_window (WINDOW *, NCURSES_WINDOW_CB, void *);
853 extern NCURSES_EXPORT(int) wresize (WINDOW *, int, int);
854 extern NCURSES_EXPORT(void) nofilter(void);
855
856 /*
857  * These extensions provide access to information stored in the WINDOW even
858  * when NCURSES_OPAQUE is set:
859  */
860 extern NCURSES_EXPORT(WINDOW *) wgetparent (const WINDOW *);    /* @GENERATED_EXT_FUNCS@ */
861 extern NCURSES_EXPORT(bool) is_cleared (const WINDOW *);        /* @GENERATED_EXT_FUNCS@ */
862 extern NCURSES_EXPORT(bool) is_idcok (const WINDOW *);          /* @GENERATED_EXT_FUNCS@ */
863 extern NCURSES_EXPORT(bool) is_idlok (const WINDOW *);          /* @GENERATED_EXT_FUNCS@ */
864 extern NCURSES_EXPORT(bool) is_immedok (const WINDOW *);        /* @GENERATED_EXT_FUNCS@ */
865 extern NCURSES_EXPORT(bool) is_keypad (const WINDOW *);         /* @GENERATED_EXT_FUNCS@ */
866 extern NCURSES_EXPORT(bool) is_leaveok (const WINDOW *);        /* @GENERATED_EXT_FUNCS@ */
867 extern NCURSES_EXPORT(bool) is_nodelay (const WINDOW *);        /* @GENERATED_EXT_FUNCS@ */
868 extern NCURSES_EXPORT(bool) is_notimeout (const WINDOW *);      /* @GENERATED_EXT_FUNCS@ */
869 extern NCURSES_EXPORT(bool) is_scrollok (const WINDOW *);       /* @GENERATED_EXT_FUNCS@ */
870 extern NCURSES_EXPORT(bool) is_syncok (const WINDOW *);         /* @GENERATED_EXT_FUNCS@ */
871 extern NCURSES_EXPORT(int) wgetscrreg (const WINDOW *, int *, int *); /* @GENERATED_EXT_FUNCS@ */
872
873 #else
874 #define curses_version() NCURSES_VERSION
875 #endif
876
877 /*
878  * Extra extension-functions, which pass a SCREEN pointer rather than using
879  * a global variable SP.
880  */
881 #if @NCURSES_SP_FUNCS@
882 #undef  NCURSES_SP_FUNCS
883 #define NCURSES_SP_FUNCS @NCURSES_PATCH@
884 #define NCURSES_SP_NAME(name) name##_sp
885
886 extern NCURSES_EXPORT(SCREEN*) new_prescr(void); /* implemented */
887
888 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(baudrate) (SCREEN*); /* implemented */
889 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(beep) (SCREEN*); /* implemented */
890 extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(can_change_color) (SCREEN*); /* implemented */
891 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(cbreak) (SCREEN*); /* implemented */
892 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(color_content) (SCREEN*, short, short*, short*, short*); /* implemented */
893 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(def_prog_mode) (SCREEN*); /* implemented */
894 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(def_shell_mode) (SCREEN*); /* implemented */
895 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(delay_output) (SCREEN*, int); /* implemented */
896 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(doupdate) (SCREEN*); /* implemented */
897 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(echo) (SCREEN*); /* implemented */
898 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(endwin) (SCREEN*); /* implemented */
899 extern NCURSES_EXPORT(char) NCURSES_SP_NAME(erasechar) (SCREEN*);/* implemented */
900 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(filter) (SCREEN*); /* implemented */
901 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(flash) (SCREEN*); /* implemented */
902 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(flushinp) (SCREEN*); /* implemented */
903 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(halfdelay)(SCREEN*, int); /* implemented */
904 extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(has_colors) (SCREEN*); /* implemented */
905 extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(has_ic) (SCREEN*); /* implemented */
906 extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(has_il) (SCREEN*); /* implemented */
907 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_color) (SCREEN*, short, short, short, short); /* implemented */
908 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_pair) (SCREEN*, short, short, short); /* implemented */
909 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(intrflush) (SCREEN*, WINDOW*, bool); /* implemented */
910 extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(isendwin) (SCREEN*); /* implemented */
911 extern NCURSES_EXPORT(NCURSES_CONST char *) NCURSES_SP_NAME(keyname) (SCREEN*, int); /* implemented */
912 extern NCURSES_EXPORT(char) NCURSES_SP_NAME(killchar) (SCREEN*); /* implemented */
913 extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(longname) (SCREEN*); /* implemented */
914 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(mvcur) (SCREEN*, int, int, int, int); /* implemented */
915 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(napms) (SCREEN*, int); /* implemented */
916 extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(newpad) (SCREEN*, int, int); /* implemented */
917 extern NCURSES_EXPORT(SCREEN *) NCURSES_SP_NAME(newterm) (SCREEN*, NCURSES_CONST char *, FILE *, FILE *); /* implemented */
918 extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(newwin) (SCREEN*, int, int, int, int); /* implemented */
919 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(nl) (SCREEN*); /* implemented */
920 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(nocbreak) (SCREEN*); /* implemented */
921 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(noecho) (SCREEN*); /* implemented */
922 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(nofilter) (SCREEN*); /* implemented */
923 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(nonl) (SCREEN*); /* implemented */
924 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(noqiflush) (SCREEN*); /* implemented */
925 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(noraw) (SCREEN*); /* implemented */
926 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(pair_content) (SCREEN*, short, short*, short*); /* implemented */
927 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(qiflush) (SCREEN*); /* implemented */
928 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(raw) (SCREEN*); /* implemented */
929 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(reset_prog_mode) (SCREEN*); /* implemented */
930 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(reset_shell_mode) (SCREEN*); /* implemented */
931 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(ripoffline) (SCREEN*, int, int (*)(WINDOW *, int));  /* implemented */
932 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(scr_init) (SCREEN*, const char *); /* implemented */
933 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(scr_restore) (SCREEN*, const char *); /* implemented */
934 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(scr_set) (SCREEN*, const char *); /* implemented */
935 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attroff) (SCREEN*, const chtype); /* implemented */
936 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attron) (SCREEN*, const chtype); /* implemented */
937 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attrset) (SCREEN*, const chtype); /* implemented */
938 extern NCURSES_EXPORT(attr_t) NCURSES_SP_NAME(slk_attr) (SCREEN*); /* implemented */
939 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attr_set) (SCREEN*, const attr_t, short, void*); /* implemented */
940 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_clear) (SCREEN*); /* implemented */
941 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_color) (SCREEN*, short); /* implemented */
942 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_init) (SCREEN*, int); /* implemented */
943 extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(slk_label) (SCREEN*, int); /* implemented */
944 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_noutrefresh) (SCREEN*); /* implemented */
945 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_refresh) (SCREEN*); /* implemented */
946 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_restore) (SCREEN*); /* implemented */
947 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_set) (SCREEN*, int, const char *, int); /* implemented */
948 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_touch) (SCREEN*); /* implemented */
949 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(start_color) (SCREEN*); /* implemented */
950 extern NCURSES_EXPORT(chtype) NCURSES_SP_NAME(termattrs) (SCREEN*); /* implemented */
951 extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(termname) (SCREEN*); /* implemented */
952 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(typeahead) (SCREEN*, int); /* implemented */
953 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(ungetch) (SCREEN*, int); /* implemented */
954 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(use_env) (SCREEN*, bool); /* implemented */
955 #if @NCURSES_EXT_FUNCS@
956 extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(keybound) (SCREEN*, int, int);
957 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(assume_default_colors) (SCREEN*, int, int);
958 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(define_key) (SCREEN*, const char *, int);
959 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(get_escdelay) (SCREEN*);
960 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(key_defined)(SCREEN*, const char *);
961 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(keyok) (SCREEN*, int, bool);
962 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(set_escdelay) (SCREEN*, int);
963 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(set_tabsize) (SCREEN*, int);
964 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(use_default_colors) (SCREEN*);
965 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(use_legacy_coding) (SCREEN*, int);
966 #endif
967 #else
968 #undef  NCURSES_SP_FUNCS
969 #define NCURSES_SP_FUNCS 0
970 #define NCURSES_SP_NAME(name) name
971 #endif
972
973 /* attributes */
974
975 #define NCURSES_ATTR_SHIFT       8
976 #define NCURSES_BITS(mask,shift) ((mask) << ((shift) + NCURSES_ATTR_SHIFT))
977
978 #define A_NORMAL        (@cf_cv_1UL@ - @cf_cv_1UL@)
979 #define A_ATTRIBUTES    NCURSES_BITS(~(@cf_cv_1UL@ - @cf_cv_1UL@),0)
980 #define A_CHARTEXT      (NCURSES_BITS(@cf_cv_1UL@,0) - @cf_cv_1UL@)
981 #define A_COLOR         NCURSES_BITS(((@cf_cv_1UL@) << 8) - @cf_cv_1UL@,0)
982 #define A_STANDOUT      NCURSES_BITS(@cf_cv_1UL@,8)
983 #define A_UNDERLINE     NCURSES_BITS(@cf_cv_1UL@,9)
984 #define A_REVERSE       NCURSES_BITS(@cf_cv_1UL@,10)
985 #define A_BLINK         NCURSES_BITS(@cf_cv_1UL@,11)
986 #define A_DIM           NCURSES_BITS(@cf_cv_1UL@,12)
987 #define A_BOLD          NCURSES_BITS(@cf_cv_1UL@,13)
988 #define A_ALTCHARSET    NCURSES_BITS(@cf_cv_1UL@,14)
989 #define A_INVIS         NCURSES_BITS(@cf_cv_1UL@,15)
990 #define A_PROTECT       NCURSES_BITS(@cf_cv_1UL@,16)
991 #define A_HORIZONTAL    NCURSES_BITS(@cf_cv_1UL@,17)
992 #define A_LEFT          NCURSES_BITS(@cf_cv_1UL@,18)
993 #define A_LOW           NCURSES_BITS(@cf_cv_1UL@,19)
994 #define A_RIGHT         NCURSES_BITS(@cf_cv_1UL@,20)
995 #define A_TOP           NCURSES_BITS(@cf_cv_1UL@,21)
996 #define A_VERTICAL      NCURSES_BITS(@cf_cv_1UL@,22)
997
998 /*
999  * Most of the pseudo functions are macros that either provide compatibility
1000  * with older versions of curses, or provide inline functionality to improve
1001  * performance.
1002  */
1003
1004 /*
1005  * These pseudo functions are always implemented as macros:
1006  */
1007
1008 #define getyx(win,y,x)          (y = getcury(win), x = getcurx(win))
1009 #define getbegyx(win,y,x)       (y = getbegy(win), x = getbegx(win))
1010 #define getmaxyx(win,y,x)       (y = getmaxy(win), x = getmaxx(win))
1011 #define getparyx(win,y,x)       (y = getpary(win), x = getparx(win))
1012
1013 #define getsyx(y,x) do { if (newscr) { \
1014                              if (is_leaveok(newscr)) \
1015                                 (y) = (x) = -1; \
1016                              else \
1017                                  getyx(newscr,(y), (x)); \
1018                         } \
1019                     } while(0)
1020
1021 #define setsyx(y,x) do { if (newscr) { \
1022                             if ((y) == -1 && (x) == -1) \
1023                                 leaveok(newscr, TRUE); \
1024                             else { \
1025                                 leaveok(newscr, FALSE); \
1026                                 wmove(newscr, (y), (x)); \
1027                             } \
1028                         } \
1029                     } while(0)
1030
1031 #ifndef NCURSES_NOMACROS
1032
1033 /*
1034  * These miscellaneous pseudo functions are provided for compatibility:
1035  */
1036
1037 #define wgetstr(w, s)           wgetnstr(w, s, -1)
1038 #define getnstr(s, n)           wgetnstr(stdscr, s, n)
1039
1040 #define setterm(term)           setupterm(term, 1, (int *)0)
1041
1042 #define fixterm()               reset_prog_mode()
1043 #define resetterm()             reset_shell_mode()
1044 #define saveterm()              def_prog_mode()
1045 #define crmode()                cbreak()
1046 #define nocrmode()              nocbreak()
1047 #define gettmode()
1048
1049 /* It seems older SYSV curses versions define these */
1050 #if !NCURSES_OPAQUE
1051 #define getattrs(win)           ((win) ? (win)->_attrs : A_NORMAL)
1052 #define getcurx(win)            ((win) ? (win)->_curx : ERR)
1053 #define getcury(win)            ((win) ? (win)->_cury : ERR)
1054 #define getbegx(win)            ((win) ? (win)->_begx : ERR)
1055 #define getbegy(win)            ((win) ? (win)->_begy : ERR)
1056 #define getmaxx(win)            ((win) ? ((win)->_maxx + 1) : ERR)
1057 #define getmaxy(win)            ((win) ? ((win)->_maxy + 1) : ERR)
1058 #define getparx(win)            ((win) ? (win)->_parx : ERR)
1059 #define getpary(win)            ((win) ? (win)->_pary : ERR)
1060 #endif /* NCURSES_OPAQUE */
1061
1062 #define wstandout(win)          (wattrset(win,A_STANDOUT))
1063 #define wstandend(win)          (wattrset(win,A_NORMAL))
1064
1065 #define wattron(win,at)         wattr_on(win, NCURSES_CAST(attr_t, at), NULL)
1066 #define wattroff(win,at)        wattr_off(win, NCURSES_CAST(attr_t, at), NULL)
1067
1068 #if !NCURSES_OPAQUE
1069 #if defined(_XOPEN_SOURCE_EXTENDED) && @NCURSES_EXT_COLORS@
1070 #define wattrset(win,at)        ((win)->_color = PAIR_NUMBER(at), \
1071                                  (win)->_attrs = (at))
1072 #else
1073 #define wattrset(win,at)        ((win)->_attrs = (at))
1074 #endif
1075 #endif /* NCURSES_OPAQUE */
1076
1077 #define scroll(win)             wscrl(win,1)
1078
1079 #define touchwin(win)           wtouchln((win), 0, getmaxy(win), 1)
1080 #define touchline(win, s, c)    wtouchln((win), s, c, 1)
1081 #define untouchwin(win)         wtouchln((win), 0, getmaxy(win), 0)
1082
1083 #define box(win, v, h)          wborder(win, v, v, h, h, 0, 0, 0, 0)
1084 #define border(ls, rs, ts, bs, tl, tr, bl, br)  wborder(stdscr, ls, rs, ts, bs, tl, tr, bl, br)
1085 #define hline(ch, n)            whline(stdscr, ch, n)
1086 #define vline(ch, n)            wvline(stdscr, ch, n)
1087
1088 #define winstr(w, s)            winnstr(w, s, -1)
1089 #define winchstr(w, s)          winchnstr(w, s, -1)
1090 #define winsstr(w, s)           winsnstr(w, s, -1)
1091
1092 #if !NCURSES_OPAQUE
1093 #define redrawwin(win)          wredrawln(win, 0, (win)->_maxy+1)
1094 #endif /* NCURSES_OPAQUE */
1095
1096 #define waddstr(win,str)        waddnstr(win,str,-1)
1097 #define waddchstr(win,str)      waddchnstr(win,str,-1)
1098
1099 /*
1100  * These apply to the first 256 color pairs.
1101  */
1102 #define COLOR_PAIR(n)   NCURSES_BITS(n, 0)
1103 #define PAIR_NUMBER(a)  (NCURSES_CAST(int,(((a) & A_COLOR) >> NCURSES_ATTR_SHIFT)))
1104
1105 /*
1106  * pseudo functions for standard screen
1107  */
1108
1109 #define addch(ch)               waddch(stdscr,ch)
1110 #define addchnstr(str,n)        waddchnstr(stdscr,str,n)
1111 #define addchstr(str)           waddchstr(stdscr,str)
1112 #define addnstr(str,n)          waddnstr(stdscr,str,n)
1113 #define addstr(str)             waddnstr(stdscr,str,-1)
1114 #define attroff(at)             wattroff(stdscr,at)
1115 #define attron(at)              wattron(stdscr,at)
1116 #define attrset(at)             wattrset(stdscr,at)
1117 #define attr_get(ap,cp,o)       wattr_get(stdscr,ap,cp,o)
1118 #define attr_off(a,o)           wattr_off(stdscr,a,o)
1119 #define attr_on(a,o)            wattr_on(stdscr,a,o)
1120 #define attr_set(a,c,o)         wattr_set(stdscr,a,c,o)
1121 #define bkgd(ch)                wbkgd(stdscr,ch)
1122 #define bkgdset(ch)             wbkgdset(stdscr,ch)
1123 #define chgat(n,a,c,o)          wchgat(stdscr,n,a,c,o)
1124 #define clear()                 wclear(stdscr)
1125 #define clrtobot()              wclrtobot(stdscr)
1126 #define clrtoeol()              wclrtoeol(stdscr)
1127 #define color_set(c,o)          wcolor_set(stdscr,c,o)
1128 #define delch()                 wdelch(stdscr)
1129 #define deleteln()              winsdelln(stdscr,-1)
1130 #define echochar(c)             wechochar(stdscr,c)
1131 #define erase()                 werase(stdscr)
1132 #define getch()                 wgetch(stdscr)
1133 #define getstr(str)             wgetstr(stdscr,str)
1134 #define inch()                  winch(stdscr)
1135 #define inchnstr(s,n)           winchnstr(stdscr,s,n)
1136 #define inchstr(s)              winchstr(stdscr,s)
1137 #define innstr(s,n)             winnstr(stdscr,s,n)
1138 #define insch(c)                winsch(stdscr,c)
1139 #define insdelln(n)             winsdelln(stdscr,n)
1140 #define insertln()              winsdelln(stdscr,1)
1141 #define insnstr(s,n)            winsnstr(stdscr,s,n)
1142 #define insstr(s)               winsstr(stdscr,s)
1143 #define instr(s)                winstr(stdscr,s)
1144 #define move(y,x)               wmove(stdscr,y,x)
1145 #define refresh()               wrefresh(stdscr)
1146 #define scrl(n)                 wscrl(stdscr,n)
1147 #define setscrreg(t,b)          wsetscrreg(stdscr,t,b)
1148 #define standend()              wstandend(stdscr)
1149 #define standout()              wstandout(stdscr)
1150 #define timeout(delay)          wtimeout(stdscr,delay)
1151 #define wdeleteln(win)          winsdelln(win,-1)
1152 #define winsertln(win)          winsdelln(win,1)
1153
1154 /*
1155  * mv functions
1156  */
1157
1158 #define mvwaddch(win,y,x,ch)            (wmove(win,y,x) == ERR ? ERR : waddch(win,ch))
1159 #define mvwaddchnstr(win,y,x,str,n)     (wmove(win,y,x) == ERR ? ERR : waddchnstr(win,str,n))
1160 #define mvwaddchstr(win,y,x,str)        (wmove(win,y,x) == ERR ? ERR : waddchnstr(win,str,-1))
1161 #define mvwaddnstr(win,y,x,str,n)       (wmove(win,y,x) == ERR ? ERR : waddnstr(win,str,n))
1162 #define mvwaddstr(win,y,x,str)          (wmove(win,y,x) == ERR ? ERR : waddnstr(win,str,-1))
1163 #define mvwdelch(win,y,x)               (wmove(win,y,x) == ERR ? ERR : wdelch(win))
1164 #define mvwchgat(win,y,x,n,a,c,o)       (wmove(win,y,x) == ERR ? ERR : wchgat(win,n,a,c,o))
1165 #define mvwgetch(win,y,x)               (wmove(win,y,x) == ERR ? ERR : wgetch(win))
1166 #define mvwgetnstr(win,y,x,str,n)       (wmove(win,y,x) == ERR ? ERR : wgetnstr(win,str,n))
1167 #define mvwgetstr(win,y,x,str)          (wmove(win,y,x) == ERR ? ERR : wgetstr(win,str))
1168 #define mvwhline(win,y,x,c,n)           (wmove(win,y,x) == ERR ? ERR : whline(win,c,n))
1169 #define mvwinch(win,y,x)                (wmove(win,y,x) == ERR ? NCURSES_CAST(chtype, ERR) : winch(win))
1170 #define mvwinchnstr(win,y,x,s,n)        (wmove(win,y,x) == ERR ? ERR : winchnstr(win,s,n))
1171 #define mvwinchstr(win,y,x,s)           (wmove(win,y,x) == ERR ? ERR : winchstr(win,s))
1172 #define mvwinnstr(win,y,x,s,n)          (wmove(win,y,x) == ERR ? ERR : winnstr(win,s,n))
1173 #define mvwinsch(win,y,x,c)             (wmove(win,y,x) == ERR ? ERR : winsch(win,c))
1174 #define mvwinsnstr(win,y,x,s,n)         (wmove(win,y,x) == ERR ? ERR : winsnstr(win,s,n))
1175 #define mvwinsstr(win,y,x,s)            (wmove(win,y,x) == ERR ? ERR : winsstr(win,s))
1176 #define mvwinstr(win,y,x,s)             (wmove(win,y,x) == ERR ? ERR : winstr(win,s))
1177 #define mvwvline(win,y,x,c,n)           (wmove(win,y,x) == ERR ? ERR : wvline(win,c,n))
1178
1179 #define mvaddch(y,x,ch)                 mvwaddch(stdscr,y,x,ch)
1180 #define mvaddchnstr(y,x,str,n)          mvwaddchnstr(stdscr,y,x,str,n)
1181 #define mvaddchstr(y,x,str)             mvwaddchstr(stdscr,y,x,str)
1182 #define mvaddnstr(y,x,str,n)            mvwaddnstr(stdscr,y,x,str,n)
1183 #define mvaddstr(y,x,str)               mvwaddstr(stdscr,y,x,str)
1184 #define mvchgat(y,x,n,a,c,o)            mvwchgat(stdscr,y,x,n,a,c,o)
1185 #define mvdelch(y,x)                    mvwdelch(stdscr,y,x)
1186 #define mvgetch(y,x)                    mvwgetch(stdscr,y,x)
1187 #define mvgetnstr(y,x,str,n)            mvwgetnstr(stdscr,y,x,str,n)
1188 #define mvgetstr(y,x,str)               mvwgetstr(stdscr,y,x,str)
1189 #define mvhline(y,x,c,n)                mvwhline(stdscr,y,x,c,n)
1190 #define mvinch(y,x)                     mvwinch(stdscr,y,x)
1191 #define mvinchnstr(y,x,s,n)             mvwinchnstr(stdscr,y,x,s,n)
1192 #define mvinchstr(y,x,s)                mvwinchstr(stdscr,y,x,s)
1193 #define mvinnstr(y,x,s,n)               mvwinnstr(stdscr,y,x,s,n)
1194 #define mvinsch(y,x,c)                  mvwinsch(stdscr,y,x,c)
1195 #define mvinsnstr(y,x,s,n)              mvwinsnstr(stdscr,y,x,s,n)
1196 #define mvinsstr(y,x,s)                 mvwinsstr(stdscr,y,x,s)
1197 #define mvinstr(y,x,s)                  mvwinstr(stdscr,y,x,s)
1198 #define mvvline(y,x,c,n)                mvwvline(stdscr,y,x,c,n)
1199
1200 /*
1201  * Some wide-character functions can be implemented without the extensions.
1202  */
1203 #if !NCURSES_OPAQUE
1204 #define getbkgd(win)                    ((win)->_bkgd)
1205 #endif /* NCURSES_OPAQUE */
1206
1207 #define slk_attr_off(a,v)               ((v) ? ERR : slk_attroff(a))
1208 #define slk_attr_on(a,v)                ((v) ? ERR : slk_attron(a))
1209
1210 #if !NCURSES_OPAQUE
1211 #if defined(_XOPEN_SOURCE_EXTENDED) && @NCURSES_EXT_COLORS@
1212 #define wattr_set(win,a,p,opts)         ((win)->_attrs = ((a) & ~A_COLOR), \
1213                                          (win)->_color = (p), \
1214                                          OK)
1215 #define wattr_get(win,a,p,opts)         ((void)((a) != (void *)0 && (*(a) = (win)->_attrs)), \
1216                                          (void)((p) != (void *)0 && (*(p) = (win)->_color)), \
1217                                          OK)
1218 #else
1219 #define wattr_set(win,a,p,opts)         ((win)->_attrs = (((a) & ~A_COLOR) | COLOR_PAIR(p)), OK)
1220 #define wattr_get(win,a,p,opts)         ((void)((a) != (void *)0 && (*(a) = (win)->_attrs)), \
1221                                          (void)((p) != (void *)0 && (*(p) = PAIR_NUMBER((win)->_attrs))), \
1222                                          OK)
1223 #endif
1224 #endif /* NCURSES_OPAQUE */
1225
1226 /*
1227  * X/Open curses deprecates SVr4 vwprintw/vwscanw, which are supposed to use
1228  * varargs.h.  It adds new calls vw_printw/vw_scanw, which are supposed to
1229  * use POSIX stdarg.h.  The ncurses versions of vwprintw/vwscanw already
1230  * use stdarg.h, so...
1231  */
1232 #define vw_printw               vwprintw
1233 #define vw_scanw                vwscanw
1234
1235 /*
1236  * Export fallback function for use in C++ binding.
1237  */
1238 #if !@HAVE_VSSCANF@
1239 #define vsscanf(a,b,c) _nc_vsscanf(a,b,c)
1240 NCURSES_EXPORT(int) vsscanf(const char *, const char *, va_list);
1241 #endif
1242
1243 /*
1244  * These macros are extensions - not in X/Open Curses.
1245  */
1246 #if @NCURSES_EXT_FUNCS@
1247 #if !NCURSES_OPAQUE
1248 #define is_cleared(win)         ((win)->_clear)
1249 #define is_idcok(win)           ((win)->_idcok)
1250 #define is_idlok(win)           ((win)->_idlok)
1251 #define is_immedok(win)         ((win)->_immed)
1252 #define is_keypad(win)          ((win)->_use_keypad)
1253 #define is_leaveok(win)         ((win)->_leaveok)
1254 #define is_nodelay(win)         ((win)->_delay == 0)
1255 #define is_notimeout(win)       ((win)->_notimeout)
1256 #define is_scrollok(win)        ((win)->_scroll)
1257 #define is_syncok(win)          ((win)->_sync)
1258 #define wgetparent(win)         ((win) ? (win)->_parent : 0)
1259 #define wgetscrreg(win,t,b)     ((win) ? (*(t) = (win)->_regtop, *(b) = (win)->_regbottom, OK) : ERR)
1260 #endif
1261 #endif
1262
1263 #endif /* NCURSES_NOMACROS */
1264
1265 /*
1266  * Public variables.
1267  *
1268  * Notes:
1269  *      a. ESCDELAY was an undocumented feature under AIX curses.
1270  *         It gives the ESC expire time in milliseconds.
1271  *      b. ttytype is needed for backward compatibility
1272  */
1273 #if NCURSES_REENTRANT
1274
1275 NCURSES_WRAPPED_VAR(WINDOW *, curscr);
1276 NCURSES_WRAPPED_VAR(WINDOW *, newscr);
1277 NCURSES_WRAPPED_VAR(WINDOW *, stdscr);
1278 NCURSES_WRAPPED_VAR(char *, ttytype);
1279 NCURSES_WRAPPED_VAR(int, COLORS);
1280 NCURSES_WRAPPED_VAR(int, COLOR_PAIRS);
1281 NCURSES_WRAPPED_VAR(int, COLS);
1282 NCURSES_WRAPPED_VAR(int, ESCDELAY);
1283 NCURSES_WRAPPED_VAR(int, LINES);
1284 NCURSES_WRAPPED_VAR(int, TABSIZE);
1285
1286 #define curscr      NCURSES_PUBLIC_VAR(curscr())
1287 #define newscr      NCURSES_PUBLIC_VAR(newscr())
1288 #define stdscr      NCURSES_PUBLIC_VAR(stdscr())
1289 #define ttytype     NCURSES_PUBLIC_VAR(ttytype())
1290 #define COLORS      NCURSES_PUBLIC_VAR(COLORS())
1291 #define COLOR_PAIRS NCURSES_PUBLIC_VAR(COLOR_PAIRS())
1292 #define COLS        NCURSES_PUBLIC_VAR(COLS())
1293 #define ESCDELAY    NCURSES_PUBLIC_VAR(ESCDELAY())
1294 #define LINES       NCURSES_PUBLIC_VAR(LINES())
1295 #define TABSIZE     NCURSES_PUBLIC_VAR(TABSIZE())
1296
1297 #else
1298
1299 extern NCURSES_EXPORT_VAR(WINDOW *) curscr;
1300 extern NCURSES_EXPORT_VAR(WINDOW *) newscr;
1301 extern NCURSES_EXPORT_VAR(WINDOW *) stdscr;
1302 extern NCURSES_EXPORT_VAR(char) ttytype[];
1303 extern NCURSES_EXPORT_VAR(int) COLORS;
1304 extern NCURSES_EXPORT_VAR(int) COLOR_PAIRS;
1305 extern NCURSES_EXPORT_VAR(int) COLS;
1306 extern NCURSES_EXPORT_VAR(int) ESCDELAY;
1307 extern NCURSES_EXPORT_VAR(int) LINES;
1308 extern NCURSES_EXPORT_VAR(int) TABSIZE;
1309
1310 #endif
1311
1312 /*
1313  * Pseudo-character tokens outside ASCII range.  The curses wgetch() function
1314  * will return any given one of these only if the corresponding k- capability
1315  * is defined in your terminal's terminfo entry.
1316  *
1317  * Some keys (KEY_A1, etc) are arranged like this:
1318  *      a1     up    a3
1319  *      left   b2    right
1320  *      c1     down  c3
1321  *
1322  * A few key codes do not depend upon the terminfo entry.
1323  */
1324 #define KEY_CODE_YES    0400            /* A wchar_t contains a key code */
1325 #define KEY_MIN         0401            /* Minimum curses key */
1326 #define KEY_BREAK       0401            /* Break key (unreliable) */
1327 #define KEY_SRESET      0530            /* Soft (partial) reset (unreliable) */
1328 #define KEY_RESET       0531            /* Reset or hard reset (unreliable) */