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