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