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