]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/curses.priv.h
ncurses 6.4 - patch 20230225
[ncurses.git] / ncurses / curses.priv.h
1 /****************************************************************************
2  * Copyright 2018-2022,2023 Thomas E. Dickey                                *
3  * Copyright 1998-2017,2018 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  *     and: Juergen Pfeifer                                                 *
35  ****************************************************************************/
36
37 /*
38  * $Id: curses.priv.h,v 1.660 2023/02/25 21:24:20 tom Exp $
39  *
40  *      curses.priv.h
41  *
42  *      Header file for curses library objects which are private to
43  *      the library.
44  *
45  */
46
47 #ifndef CURSES_PRIV_H
48 #define CURSES_PRIV_H 1
49 /* *INDENT-OFF* */
50
51 #include <ncurses_dll.h>
52
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
57 #include <ncurses_cfg.h>
58
59 #if USE_RCS_IDS
60 #define MODULE_ID(id) static const char Ident[] = id;
61 #else
62 #define MODULE_ID(id) /*nothing*/
63 #endif
64
65 #include <stddef.h>             /* for offsetof */
66 #include <stdlib.h>
67 #include <string.h>
68 #include <sys/types.h>
69 #include <sys/stat.h>
70
71 #if HAVE_UNISTD_H
72 #include <unistd.h>
73 #endif
74
75 #if HAVE_LIMITS_H
76 # include <limits.h>
77 #elif HAVE_SYS_PARAM_H
78 # include <sys/param.h>
79 #endif
80
81 #include <assert.h>
82 #include <stdio.h>
83
84 #include <errno.h>
85
86 #if defined __hpux
87 #  ifndef EILSEQ
88 #    define EILSEQ 47
89 #  endif
90 #endif
91
92 #ifndef PATH_MAX
93 # if defined(_POSIX_PATH_MAX)
94 #  define PATH_MAX _POSIX_PATH_MAX
95 # elif defined(MAXPATHLEN)
96 #  define PATH_MAX MAXPATHLEN
97 # else
98 #  define PATH_MAX 255  /* the Posix minimum path-size */
99 # endif
100 #endif
101
102 #if DECL_ERRNO
103 extern int errno;
104 #endif
105
106 /* Some Windows related defines */
107 #undef _NC_WINDOWS
108 #if (defined(_WIN32) || defined(_WIN64))
109 #define _NC_WINDOWS
110 #else
111 #undef EXP_WIN32_DRIVER
112 #endif
113
114 #undef _NC_MINGW
115 #if (defined(__MINGW32__) || defined(__MINGW64__))
116 #define _NC_MINGW
117 #endif
118
119 #undef _NC_MSC
120 #ifdef _MSC_VER
121 #define _NC_MSC
122 #endif
123
124 /* Some systems have a broken 'select()', but workable 'poll()'.  Use that */
125 #if HAVE_WORKING_POLL
126 #define USE_FUNC_POLL 1
127 #if HAVE_POLL_H
128 #include <poll.h>
129 #else
130 #include <sys/poll.h>
131 #endif
132 #else
133 #define USE_FUNC_POLL 0
134 #endif
135
136 #if HAVE_INTTYPES_H
137 # include <inttypes.h>
138 #else
139 # if HAVE_STDINT_H
140 #  include <stdint.h>
141 # endif
142 #endif
143
144 #ifndef PRIxPTR
145 # define PRIxPTR        "lx"
146 #endif
147
148 /* include signal.h before curses.h to work-around defect in glibc 2.1.3 */
149 #include <signal.h>
150
151 /* Alessandro Rubini's GPM (general-purpose mouse) */
152 #if HAVE_LIBGPM && HAVE_GPM_H
153 #define USE_GPM_SUPPORT 1
154 #else
155 #define USE_GPM_SUPPORT 0
156 #endif
157
158 /* QNX mouse support */
159 #if defined(__QNX__) && !defined(__QNXNTO__)
160 #define USE_QNX_MOUSE 1
161 #else
162 #define USE_QNX_MOUSE 0
163 #endif
164
165 /* EMX mouse support */
166 #ifdef __EMX__
167 #define USE_EMX_MOUSE 1
168 #else
169 #define USE_EMX_MOUSE 0
170 #endif
171
172 /* kLIBC keyboard/mouse support */
173 #if defined(__OS2__) && defined(__KLIBC__)
174 #define USE_KLIBC_KBD   1
175 #define USE_KLIBC_MOUSE 1
176 #else
177 #define USE_KLIBC_KBD   0
178 #define USE_KLIBC_MOUSE 0
179 #endif
180
181 #define DEFAULT_MAXCLICK 166
182 #define EV_MAX          8       /* size of mouse circular event queue */
183
184 /*
185  * If we don't have signals to support it, don't add a sigwinch handler.
186  * In any case, resizing is an extended feature.  Use it if we've got it.
187  */
188 #if !NCURSES_EXT_FUNCS
189 #undef HAVE_SIZECHANGE
190 #define HAVE_SIZECHANGE 0
191 #endif
192
193 #if HAVE_SIZECHANGE && USE_SIGWINCH && defined(SIGWINCH)
194 #define USE_SIZECHANGE 1
195 #else
196 #define USE_SIZECHANGE 0
197 #undef USE_SIGWINCH
198 #define USE_SIGWINCH 0
199 #endif
200
201 /*
202  * When building in the MSYS2 environment, the automatic discovery of
203  * the path separator in configure doesn't work properly. So, if building
204  * for MinGW, we enforce the correct Windows PATH separator
205  */
206 #if defined(_NC_WINDOWS)
207 #  ifdef NCURSES_PATHSEP
208 #    undef NCURSES_PATHSEP
209 #  endif
210 #  define NCURSES_PATHSEP ';'
211 #endif
212
213 /*
214  * When the standard handles have been redirected (such as inside a text editor
215  * or the less utility), keystrokes must be read from the console rather than
216  * the redirected handle.  The standard output handle suffers from a similar
217  * problem.  Both handles are not closed once opened.  The console shall be
218  * considered reachable throughout the process.
219  */
220 #if defined(_NC_WINDOWS)
221 #define GetDirectHandle(fileName, shareMode) \
222         CreateFile(TEXT(fileName), \
223                    GENERIC_READ | GENERIC_WRITE, \
224                    shareMode, \
225                    0, \
226                    OPEN_EXISTING, \
227                    0, \
228                    0)
229 #endif
230
231 /*
232  * Not all platforms have memmove; some have an equivalent bcopy.  (Some may
233  * have neither).
234  */
235 #if USE_OK_BCOPY
236 #define memmove(d,s,n) bcopy(s,d,n)
237 #elif USE_MY_MEMMOVE
238 #define memmove(d,s,n) _nc_memmove(d,s,n)
239 extern NCURSES_EXPORT(void *) _nc_memmove (void *, const void *, size_t);
240 #endif
241
242 /*
243  * If we have va_copy(), use it for assigning va_list's.
244  */
245 #if defined(HAVE___VA_COPY)
246 #define begin_va_copy(dst,src)  __va_copy(dst, src)
247 #define end_va_copy(dst)        va_end(dst)
248 #elif defined(va_copy) || defined(HAVE_VA_COPY)
249 #define begin_va_copy(dst,src)  va_copy(dst, src)
250 #define end_va_copy(dst)        va_end(dst)
251 #else
252 #define begin_va_copy(dst,src) (dst) = (src)
253 #define end_va_copy(dst)        /* nothing */
254 #endif
255
256 /*
257  * Either/both S_ISxxx and/or S_IFxxx are defined in sys/types.h; some systems
258  * lack one or the other.
259  */
260 #ifndef S_ISDIR
261 #define S_ISDIR(mode) ((mode & S_IFMT) == S_IFDIR)
262 #endif
263
264 #ifndef S_ISREG
265 #define S_ISREG(mode) ((mode & S_IFMT) == S_IFREG)
266 #endif
267
268 /*
269  * POSIX ignores the "b", which c89 specified.  Some very old systems do not
270  * accept it.
271  */
272 #if USE_FOPEN_BIN_R
273 #define BIN_R   "rb"
274 #define BIN_W   "wb"
275 #else
276 #define BIN_R   "r"
277 #define BIN_W   "w"
278 #endif
279
280 /*
281  * Scroll hints are useless when hashmap is used
282  */
283 #if !USE_SCROLL_HINTS
284 #if !USE_HASHMAP
285 #define USE_SCROLL_HINTS 1
286 #else
287 #define USE_SCROLL_HINTS 0
288 #endif
289 #endif
290
291 #if USE_SCROLL_HINTS
292 #define if_USE_SCROLL_HINTS(stmt) stmt
293 #else
294 #define if_USE_SCROLL_HINTS(stmt) /*nothing*/
295 #endif
296
297 #include <nc_string.h>
298
299 /*
300  * Options for terminal drivers, etc...
301  */
302 #ifdef USE_TERM_DRIVER
303 #define NO_TERMINAL "unknown"
304 #define USE_SP_RIPOFF     1
305 #define USE_SP_TERMTYPE   1
306 #define USE_SP_WINDOWLIST 1
307 #else
308 #define NO_TERMINAL 0
309 #endif
310
311 #define VALID_TERM_ENV(term_env, no_terminal) \
312         (term_env = (NonEmpty(term_env) \
313                      ? term_env \
314                      : no_terminal), \
315          NonEmpty(term_env))
316
317 /*
318  * Note:  ht/cbt expansion flakes out randomly under Linux 1.1.47, but only
319  * when we're throwing control codes at the screen at high volume.  To see
320  * this, re-enable USE_HARD_TABS and run worm for a while.  Other systems
321  * probably don't want to define this either due to uncertainties about tab
322  * delays and expansion in raw mode.
323  */
324
325 #define TRIES struct tries
326 typedef TRIES {
327         TRIES    *child;            /* ptr to child.  NULL if none          */
328         TRIES    *sibling;          /* ptr to sibling.  NULL if none        */
329         unsigned char    ch;        /* character at this node               */
330         unsigned short   value;     /* code of string so far.  0 if none.   */
331 #undef TRIES
332 } TRIES;
333
334 /*
335  * Common/troublesome character definitions
336  */
337 #define StringOf(ch) {ch, 0}
338
339 #define L_BRACE '{'
340 #define R_BRACE '}'
341 #define S_QUOTE '\''
342 #define D_QUOTE '"'
343
344 #define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
345
346 /*
347  * Structure for palette tables
348  */
349
350 #define MAXCOLUMNS    135
351 #define MAXLINES      66
352 #define FIFO_SIZE     MAXCOLUMNS+2  /* for nocbreak mode input */
353
354 #define ACS_LEN       128
355
356 #define WINDOWLIST struct _win_list
357
358 #if USE_WIDEC_SUPPORT
359 #define _nc_bkgd    _bkgrnd
360 #else
361 #undef _XOPEN_SOURCE_EXTENDED
362 #undef _XPG5
363 #define _nc_bkgd    _bkgd
364 #define wgetbkgrnd(win, wch)    ((*wch = win->_bkgd) != 0 ? OK : ERR)
365 #define wbkgrnd     wbkgd
366 #endif
367
368 #undef NCURSES_OPAQUE
369 #define NCURSES_INTERNALS 1
370 #define NCURSES_OPAQUE 0
371
372 #include <curses.h>     /* we'll use -Ipath directive to get the right one! */
373
374 #if !(defined(NCURSES_WGETCH_EVENTS) && defined(NEED_KEY_EVENT))
375 #undef KEY_EVENT                /* reduce compiler-warnings with Visual C++ */
376 #endif
377
378 typedef struct
379 {
380     int red, green, blue;       /* what color_content() returns */
381     int r, g, b;                /* params to init_color() */
382     int init;                   /* true if we called init_color() */
383 }
384 color_t;
385
386 typedef union {
387     struct {
388         unsigned char red;
389         unsigned char green;
390         unsigned char blue;
391     } bits;                     /* bits per color-value in RGB */
392     unsigned value;
393 } rgb_bits_t;
394
395 /*
396  * If curses.h did not expose the SCREEN-functions, then we do not need the
397  * parameter in the corresponding unextended functions.
398  */
399
400 #define USE_SP_FUNC_SUPPORT     NCURSES_SP_FUNCS
401 #define USE_EXT_SP_FUNC_SUPPORT (NCURSES_SP_FUNCS && NCURSES_EXT_FUNCS)
402
403 #if NCURSES_SP_FUNCS
404 #define SP_PARM         sp      /* use parameter */
405 #define NCURSES_SP_ARG          SP_PARM
406 #define NCURSES_SP_DCL  SCREEN *NCURSES_SP_ARG
407 #define NCURSES_SP_DCL0 NCURSES_SP_DCL
408 #define NCURSES_SP_ARGx         NCURSES_SP_ARG,
409 #define NCURSES_SP_DCLx SCREEN *NCURSES_SP_ARGx
410 #else
411 #define SP_PARM         SP      /* use global variable */
412 #define NCURSES_SP_ARG
413 #define NCURSES_SP_DCL
414 #define NCURSES_SP_DCL0 void
415 #define NCURSES_SP_ARGx
416 #define NCURSES_SP_DCLx
417 #endif
418
419 #include <nc_panel.h>
420
421 #include <term.priv.h>
422 #include <nc_termios.h>
423
424 #define IsPreScreen(sp)      (((sp) != 0) && sp->_prescreen)
425 #define HasTerminal(sp)      (((sp) != 0) && (0 != ((sp)->_term)))
426 #define IsValidScreen(sp)    (HasTerminal(sp) && !IsPreScreen(sp))
427
428 #if USE_REENTRANT
429 #define CurTerm              _nc_prescreen._cur_term
430 #else
431 #define CurTerm              cur_term
432 #endif
433
434 #if NCURSES_SP_FUNCS
435 #define TerminalOf(sp)       ((sp) ? ((sp)->_term ? (sp)->_term : CurTerm) : CurTerm)
436 #else
437 #define TerminalOf(sp)       CurTerm
438 #endif
439
440 /*
441  * The legacy layout for TERMTYPE uses "short" for all of the numbers.  Moving
442  * past that, numeric capabilities can be "int" by using a TERMTYPE2 structure
443  * in TERMINAL, and doing most of the internal work using TERMTYPE2.  There are
444  * a few places (mostly to expose the legacy layout) where the distinction
445  * needs attention.
446  */
447 #if NCURSES_EXT_COLORS && HAVE_INIT_EXTENDED_COLOR
448 #define NCURSES_EXT_NUMBERS  1
449 #define NCURSES_INT2         int
450 #define SIZEOF_INT2          4
451 #define TerminalType(tp)     (tp)->type2
452 #else
453 #define NCURSES_EXT_NUMBERS  0
454 #define NCURSES_INT2         short
455 #define SIZEOF_INT2          2
456 #define TerminalType(tp)     (tp)->type
457 #endif
458
459 #define SIZEOF_SHORT         2
460
461 #ifdef CUR
462 #undef CUR
463 #define CUR TerminalType(cur_term).
464 #endif
465
466 /*
467  * Reduce dependency on cur_term global by using terminfo data from SCREEN's
468  * pointer to this data.
469  */
470 #ifdef USE_SP_TERMTYPE
471 #undef CUR
472 #endif
473
474 #define SP_TERMTYPE TerminalType(TerminalOf(sp)).
475
476 #include <term_entry.h>
477
478 #include <nc_tparm.h>
479
480 /*
481  * Simplify ifdef's for the "*_ATTR" macros in case italics are not configured.
482  */
483 #if defined(A_ITALIC) && defined(exit_italics_mode)
484 #define USE_ITALIC 1
485 #else
486 #define USE_ITALIC 0
487 #undef  A_ITALIC
488 #define A_ITALIC 0
489 #endif
490
491 /*
492  * Use these macros internally, to make tracing less verbose.  But leave the
493  * option for compiling the tracing into the library.
494  */
495 #if 1
496 #define ColorPair(n)            (NCURSES_BITS(n, 0) & A_COLOR)
497 #define PairNumber(a)           (NCURSES_CAST(int,(((unsigned long)(a) & A_COLOR) >> NCURSES_ATTR_SHIFT)))
498 #else
499 #define ColorPair(pair)         COLOR_PAIR(pair)
500 #define PairNumber(attr)        PAIR_NUMBER(attr)
501 #endif
502
503 #define unColor(n)              unColor2(AttrOf(n))
504 #define unColor2(a)             ((a) & ALL_BUT_COLOR)
505
506 /*
507  * Extended-colors stores the color pair in a separate struct-member than the
508  * attributes.  But for compatibility, we handle most cases where a program
509  * written for non-extended colors stores the color in the attributes by
510  * checking for a color pair in both places.
511  */
512 #if NCURSES_EXT_COLORS
513 #define if_EXT_COLORS(stmt)     stmt
514 #define SetPair(value,p)        SetPair2((value).ext_color, AttrOf(value), p)
515 #define SetPair2(c,a,p)         c = (p), \
516                                 a = (unColor2(a) | ColorPair(oldColor(c)))
517 #define GetPair(value)          GetPair2((value).ext_color, AttrOf(value))
518 #define GetPair2(c,a)           ((c) ? (c) : PairNumber(a))
519 #define oldColor(p)             (((p) > 255) ? 255 : (p))
520 #define GET_WINDOW_PAIR(w)      GetPair2((w)->_color, (w)->_attrs)
521 #define SET_WINDOW_PAIR(w,p)    (w)->_color = (p)
522 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b) && GetPair(a) == GetPair(b))
523
524 #define VIDPUTS(sp,attr,pair)   do { \
525                                     int vid_pair = pair; \
526                                     NCURSES_SP_NAME(vid_puts)( \
527                                         NCURSES_SP_ARGx attr, \
528                                         (NCURSES_PAIRS_T) pair, \
529                                         &vid_pair, \
530                                         NCURSES_OUTC_FUNC); \
531                                 } while (0)
532
533 #else /* !NCURSES_EXT_COLORS */
534
535 #define if_EXT_COLORS(stmt)     /* nothing */
536 #define SetPair(value,p)        RemAttr(value, A_COLOR), \
537                                 SetAttr(value, AttrOf(value) | ColorPair(p))
538 #define GetPair(value)          PairNumber(AttrOf(value))
539 #define GET_WINDOW_PAIR(w)      PairNumber(WINDOW_ATTRS(w))
540 #define SET_WINDOW_PAIR(w,p)    WINDOW_ATTRS(w) &= ALL_BUT_COLOR, \
541                                 WINDOW_ATTRS(w) |= ColorPair(p)
542 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b))
543
544 #define VIDPUTS(sp,attr,pair)   NCURSES_SP_NAME(vidputs)(NCURSES_SP_ARGx attr, NCURSES_OUTC_FUNC)
545
546 #endif /* NCURSES_EXT_COLORS */
547
548 #define NCURSES_OUTC_FUNC       NCURSES_SP_NAME(_nc_outch)
549 #define NCURSES_PUTP2(name,value)    NCURSES_SP_NAME(_nc_putp)(NCURSES_SP_ARGx name, value)
550 #define NCURSES_PUTP2_FLUSH(name,value)    NCURSES_SP_NAME(_nc_putp_flush)(NCURSES_SP_ARGx name, value)
551
552 #if NCURSES_NO_PADDING
553 #define GetNoPadding(sp)        ((sp) ? (sp)->_no_padding : _nc_prescreen._no_padding)
554 #define SetNoPadding(sp)        _nc_set_no_padding(sp)
555 extern NCURSES_EXPORT(void)     _nc_set_no_padding(SCREEN *);
556 #else
557 #define GetNoPadding(sp)        FALSE
558 #define SetNoPadding(sp)        /*nothing*/
559 #endif
560
561 #define WINDOW_ATTRS(w)         ((w)->_attrs)
562
563 #define SCREEN_ATTRS(s)         (*((s)->_current_attr))
564 #define GET_SCREEN_PAIR(s)      GetPair(SCREEN_ATTRS(s))
565 #define SET_SCREEN_PAIR(s,p)    SetPair(SCREEN_ATTRS(s), p)
566
567 #if USE_REENTRANT || NCURSES_SP_FUNCS
568 NCURSES_EXPORT(int *)        _nc_ptr_Lines (SCREEN *);
569 NCURSES_EXPORT(int *)        _nc_ptr_Cols (SCREEN *);
570 NCURSES_EXPORT(int *)        _nc_ptr_Tabsize (SCREEN *);
571 NCURSES_EXPORT(int *)        _nc_ptr_Escdelay (SCREEN *);
572 #endif
573
574 #if USE_REENTRANT
575
576 #define ptrLines(sp)         (sp ? &(sp->_LINES) : &(_nc_prescreen._LINES))
577 #define ptrCols(sp)          (sp ? &(sp->_COLS) : &(_nc_prescreen._COLS))
578 #define ptrTabsize(sp)       (sp ? &(sp->_TABSIZE) : &(_nc_prescreen._TABSIZE))
579 #define ptrEscdelay(sp)      (sp ? &(sp->_ESCDELAY) : &(_nc_prescreen._ESCDELAY))
580
581 #define SET_LINES(value)     *_nc_ptr_Lines(SP_PARM) = value
582 #define SET_COLS(value)      *_nc_ptr_Cols(SP_PARM) = value
583 #define SET_TABSIZE(value)   *_nc_ptr_Tabsize(SP_PARM) = value
584 #define SET_ESCDELAY(value)  *_nc_ptr_Escdelay(SP_PARM) = value
585
586 #else
587
588 #define ptrLines(sp)         &LINES
589 #define ptrCols(sp)          &COLS
590 #define ptrTabsize(sp)       &TABSIZE
591 #define ptrEscdelay(sp)      &ESCDELAY
592
593 #define SET_LINES(value)     LINES = value
594 #define SET_COLS(value)      COLS = value
595 #define SET_TABSIZE(value)   TABSIZE = value
596 #define SET_ESCDELAY(value)  ESCDELAY = value
597
598 #endif
599
600 #define IS_SUBWIN(w)         ((w)->_flags & _SUBWIN)
601 #define IS_PAD(w)            ((w)->_flags & _ISPAD)
602 #define IS_WRAPPED(w)        ((w)->_flags & _WRAPPED)
603
604 #define HasHardTabs()   (NonEmpty(clear_all_tabs) && NonEmpty(set_tab))
605
606 #define TR_MUTEX(data) _tracef("%s@%d: me:%08lX COUNT:%2u/%2d/%6d/%2d/%s%9u: " #data, \
607             __FILE__, __LINE__, \
608             (unsigned long) (pthread_self()), \
609             data.__data.__lock, \
610             data.__data.__count, \
611             data.__data.__owner, \
612             data.__data.__kind, \
613             (data.__data.__nusers > 5) ? " OOPS " : "", \
614             data.__data.__nusers)
615 #define TR_GLOBAL_MUTEX(name) TR_MUTEX(_nc_globals.mutex_##name)
616
617 #if USE_WEAK_SYMBOLS
618 #if defined(__GNUC__)
619 #  if defined __USE_ISOC99
620 #    define _cat_pragma(exp)    _Pragma(#exp)
621 #    define _weak_pragma(exp)   _cat_pragma(weak name)
622 #  else
623 #    define _weak_pragma(exp)
624 #  endif
625 #  define _declare(name)        __extension__ extern __typeof__(name) name
626 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
627 #else
628 #  undef USE_WEAK_SYMBOLS
629 #  define USE_WEAK_SYMBOLS 0
630 #endif
631 #endif
632
633 #ifdef USE_PTHREADS
634
635 #if USE_REENTRANT
636 #include <pthread.h>
637 extern NCURSES_EXPORT(void) _nc_init_pthreads(void);
638 extern NCURSES_EXPORT(void) _nc_mutex_init(pthread_mutex_t *);
639 extern NCURSES_EXPORT(int) _nc_mutex_lock(pthread_mutex_t *);
640 extern NCURSES_EXPORT(int) _nc_mutex_trylock(pthread_mutex_t *);
641 extern NCURSES_EXPORT(int) _nc_mutex_unlock(pthread_mutex_t *);
642 #define _nc_lock_global(name)   _nc_mutex_lock(&_nc_globals.mutex_##name)
643 #define _nc_try_global(name)    _nc_mutex_trylock(&_nc_globals.mutex_##name)
644 #define _nc_unlock_global(name) _nc_mutex_unlock(&_nc_globals.mutex_##name)
645
646 #else
647 #error POSIX threads requires --enable-reentrant option
648 #endif
649
650 #ifdef USE_PTHREADS
651 #  if USE_WEAK_SYMBOLS
652 weak_symbol(pthread_sigmask);
653 weak_symbol(pthread_kill);
654 weak_symbol(pthread_self);
655 weak_symbol(pthread_equal);
656 weak_symbol(pthread_mutex_init);
657 weak_symbol(pthread_mutex_lock);
658 weak_symbol(pthread_mutex_unlock);
659 weak_symbol(pthread_mutex_trylock);
660 weak_symbol(pthread_mutexattr_settype);
661 weak_symbol(pthread_mutexattr_init);
662 extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
663 #    undef  sigprocmask
664 #    define sigprocmask(a, b, c) _nc_sigprocmask(a, b, c)
665 #    define GetThreadID() (((pthread_self)) ? pthread_self() : (pthread_t) getpid())
666 #  else
667 #    define GetThreadID() pthread_self()
668 #  endif
669 #endif
670
671 #if HAVE_NANOSLEEP
672 #undef HAVE_NANOSLEEP
673 #define HAVE_NANOSLEEP 0        /* nanosleep suspends all threads */
674 #endif
675
676 #else /* !USE_PTHREADS */
677
678 #if USE_PTHREADS_EINTR
679 #  if USE_WEAK_SYMBOLS
680 #include <pthread.h>
681 weak_symbol(pthread_sigmask);
682 weak_symbol(pthread_kill);
683 weak_symbol(pthread_self);
684 weak_symbol(pthread_equal);
685 extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
686 #    undef  sigprocmask
687 #    define sigprocmask(a, b, c) _nc_sigprocmask(a, b, c)
688 #  endif
689 #endif /* USE_PTHREADS_EINTR */
690
691 #define _nc_init_pthreads()     /* nothing */
692 #define _nc_mutex_init(obj)     /* nothing */
693
694 #define _nc_lock_global(name)   /* nothing */
695 #define _nc_try_global(name)    0
696 #define _nc_unlock_global(name) /* nothing */
697 #endif /* USE_PTHREADS */
698
699 #if USE_PTHREADS_EINTR
700 extern NCURSES_EXPORT(void) _nc_set_read_thread(bool);
701 #else
702 #define _nc_set_read_thread(enable)     /* nothing */
703 #endif
704
705 /*
706  * When using sp-funcs, locks are targeted to SCREEN-level granularity.
707  * So the locking is done in the non-sp-func (which calls the sp-func) rather
708  * than in the sp-func itself.
709  *
710  * Use the _nc_nonsp_XXX functions in the function using "NCURSES_SP_NAME()".
711  * Use the _nc_sp_XXX functions in the function using "#if NCURSES_SP_FUNCS".
712  */
713 #if NCURSES_SP_FUNCS
714
715 #define _nc_nonsp_lock_global(name)     /* nothing */
716 #define _nc_nonsp_try_global(name)    0
717 #define _nc_nonsp_unlock_global(name)   /* nothing */
718
719 #define _nc_sp_lock_global(name)        _nc_lock_global(name)
720 #define _nc_sp_try_global(name)         _nc_try_global(name)
721 #define _nc_sp_unlock_global(name)      _nc_unlock_global(name)
722
723 #else
724
725 #define _nc_nonsp_lock_global(name)     _nc_lock_global(name)
726 #define _nc_nonsp_try_global(name)      _nc_try_global(name)
727 #define _nc_nonsp_unlock_global(name)   _nc_unlock_global(name)
728
729 #define _nc_sp_lock_global(name)        /* nothing */
730 #define _nc_sp_try_global(name)    0
731 #define _nc_sp_unlock_global(name)      /* nothing */
732
733 #endif
734
735 #if HAVE_CLOCK_GETTIME
736 # define PRECISE_GETTIME 1
737 # define GetClockTime(t) clock_gettime(CLOCK_REALTIME, t)
738 # define TimeType struct timespec
739 # define TimeScale 1000000000L          /* 1e9 */
740 # define sub_secs tv_nsec
741 #elif HAVE_GETTIMEOFDAY
742 # define PRECISE_GETTIME 1
743 # define GetClockTime(t) gettimeofday(t, 0)
744 # define TimeType struct timeval
745 # define TimeScale 1000000L             /* 1e6 */
746 # define sub_secs tv_usec
747 #else
748 # define PRECISE_GETTIME 0
749 # define TimeType time_t
750 #endif
751
752 /*
753  * Definitions for color pairs
754  */
755
756 #define MAX_OF_TYPE(t)   (int)(((unsigned t)(~0))>>1)
757
758 #include <new_pair.h>
759
760 #define isDefaultColor(c)       ((c) < 0)
761 #define COLOR_DEFAULT           -1
762
763 #if defined(USE_BUILD_CC) || (defined(USE_TERMLIB) && !defined(NEED_NCURSES_CH_T))
764
765 #undef NCURSES_CH_T             /* this is not a termlib feature */
766 #define NCURSES_CH_T void       /* ...but we need a pointer in SCREEN */
767
768 #endif  /* USE_TERMLIB */
769
770 #ifndef USE_TERMLIB
771 struct ldat
772 {
773         NCURSES_CH_T    *text;          /* text of the line */
774         NCURSES_SIZE_T  firstchar;      /* first changed character in the line */
775         NCURSES_SIZE_T  lastchar;       /* last changed character in the line */
776         NCURSES_SIZE_T  oldindex;       /* index of the line at last update */
777 };
778 #endif  /* USE_TERMLIB */
779
780 typedef enum {
781         M_XTERM = -1            /* use xterm's mouse tracking? */
782         ,M_NONE = 0             /* no mouse device */
783 #if USE_GPM_SUPPORT
784         ,M_GPM                  /* use GPM */
785 #endif
786 #if USE_SYSMOUSE
787         ,M_SYSMOUSE             /* FreeBSD sysmouse on console */
788 #endif
789 #ifdef USE_TERM_DRIVER
790         ,M_TERM_DRIVER          /* Win32 console, etc */
791 #endif
792 } MouseType;
793
794 typedef enum {
795         MF_X10 = 0              /* conventional 3-byte format */
796         , MF_SGR1006            /* xterm private mode 1006, SGR-style */
797 #ifdef EXP_XTERM_1005
798         , MF_XTERM_1005         /* xterm UTF-8 private mode 1005 */
799 #endif
800 } MouseFormat;
801
802 /*
803  * Structures for scrolling.
804  */
805
806 typedef struct {
807         unsigned long hashval;
808         int oldcount, newcount;
809         int oldindex, newindex;
810 } HASHMAP;
811
812 /*
813  * Structures for soft labels.
814  */
815
816 struct _SLK;
817
818 #if !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
819
820 typedef struct
821 {
822         char *ent_text;         /* text for the label */
823         char *form_text;        /* formatted text (left/center/...) */
824         int ent_x;              /* x coordinate of this field */
825         char dirty;             /* this label has changed */
826         char visible;           /* field is visible */
827 } slk_ent;
828
829 typedef struct _SLK {
830         bool    dirty;          /* all labels have changed */
831         bool    hidden;         /* soft labels are hidden */
832         WINDOW  *win;
833         slk_ent *ent;
834         short   maxlab;         /* number of available labels */
835         short   labcnt;         /* number of allocated labels */
836         short   maxlen;         /* length of labels */
837         NCURSES_CH_T attr;      /* soft label attribute */
838 } SLK;
839
840 #endif  /* USE_TERMLIB */
841
842 #if USE_GPM_SUPPORT
843 #undef buttons                  /* term.h defines this, and gpm uses it! */
844 #include <gpm.h>
845 #if USE_WEAK_SYMBOLS
846 weak_symbol(Gpm_Wgetch);
847 #endif
848
849 #ifdef HAVE_LIBDL
850 /* link dynamically to GPM */
851 typedef int *TYPE_gpm_fd;
852 typedef int (*TYPE_Gpm_Open) (Gpm_Connect *, int);
853 typedef int (*TYPE_Gpm_Close) (void);
854 typedef int (*TYPE_Gpm_GetEvent) (Gpm_Event *);
855
856 #define my_gpm_fd       SP_PARM->_mouse_gpm_fd
857 #define my_Gpm_Open     SP_PARM->_mouse_Gpm_Open
858 #define my_Gpm_Close    SP_PARM->_mouse_Gpm_Close
859 #define my_Gpm_GetEvent SP_PARM->_mouse_Gpm_GetEvent
860 #else
861 /* link statically to GPM */
862 #define my_gpm_fd       &gpm_fd
863 #define my_Gpm_Open     Gpm_Open
864 #define my_Gpm_Close    Gpm_Close
865 #define my_Gpm_GetEvent Gpm_GetEvent
866 #endif /* HAVE_LIBDL */
867 #endif /* USE_GPM_SUPPORT */
868
869 /*
870  * When converting from terminfo to termcap, check for cases where we can trim
871  * octal escapes down to 2-character form.  It is useful for terminfo format
872  * also, but not as important.
873  */
874 #define MAX_TC_FIXUPS   10
875 #define MIN_TC_FIXUPS   4
876
877 #define isoctal(c) ((c) >= '0' && (c) <= '7')
878
879 /*
880  * The filesystem database normally uses a single-letter for the lower level
881  * of directories.  Use a hexadecimal code for filesystems which do not
882  * preserve mixed-case names.
883  */
884 #if MIXEDCASE_FILENAMES
885 #define LEAF_FMT "%c"
886 #define LEAF_LEN 1
887 #else
888 #define LEAF_FMT "%02x"
889 #define LEAF_LEN 2
890 #endif
891
892 /*
893  * TRACEMSE_FMT is no longer than 80 columns, there are 5 numbers that
894  * could at most have 10 digits, and the mask contains no more than 32 bits
895  * with each bit representing less than 15 characters.  Usually the whole
896  * string is less than 80 columns, but this buffer size is an absolute
897  * limit.
898  */
899 #define TRACEMSE_MAX    (80 + (5 * 10) + (32 * 15))
900 #define TRACEMSE_FMT    "id %2d  at (%2d, %2d, %2d) state %4lx = {" /* } */
901
902 #ifdef USE_TERM_DRIVER
903 struct DriverTCB; /* Terminal Control Block forward declaration */
904 #define INIT_TERM_DRIVER()      _nc_globals.term_driver = _nc_get_driver
905 #else
906 #define INIT_TERM_DRIVER()      /* nothing */
907 #endif
908
909 extern NCURSES_EXPORT_VAR(NCURSES_GLOBALS) _nc_globals;
910
911 /* The limit reserves one byte for a terminating NUL */
912 #define my_getstr_limit (_nc_globals.getstr_limit - 1)
913 #define _nc_getstr_limit(n) \
914         (((n) < 0) \
915          ? my_getstr_limit \
916          : (((n) > my_getstr_limit) \
917             ? my_getstr_limit \
918             : (n)))
919
920 /*
921  * Use screen-specific ripoff data (for softkeys) rather than global.
922  */
923 #ifdef USE_SP_RIPOFF
924 #define safe_ripoff_sp     (sp)->rsp
925 #define safe_ripoff_stack  (sp)->rippedoff
926 #else
927 #define safe_ripoff_sp     _nc_prescreen.rsp
928 #define safe_ripoff_stack  _nc_prescreen.rippedoff
929 #endif
930
931 extern NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _nc_prescreen;
932
933 typedef enum {
934     ewInitial = 0,
935     ewRunning,
936     ewSuspend
937 } ENDWIN;
938
939 /*
940  * The SCREEN structure.
941  */
942 typedef struct screen {
943         int             _ifd;           /* input file descriptor for screen */
944         int             _ofd;           /* output file descriptor for screen */
945         FILE            *_ofp;          /* output file ptr for screen       */
946         char            *out_buffer;    /* output buffer                    */
947         size_t          out_limit;      /* output buffer size               */
948         size_t          out_inuse;      /* output buffer current use        */
949         bool            _filtered;      /* filter() was called              */
950         bool            _prescreen;     /* is in prescreen phase            */
951         bool            _use_env;       /* LINES & COLS from environment?   */
952         int             _checkfd;       /* filedesc for typeahead check     */
953         TERMINAL        *_term;         /* terminal type information        */
954         TTY             _saved_tty;     /* savetty/resetty information      */
955         NCURSES_SIZE_T  _lines;         /* screen lines                     */
956         NCURSES_SIZE_T  _columns;       /* screen columns                   */
957
958         NCURSES_SIZE_T  _lines_avail;   /* lines available for stdscr       */
959         NCURSES_SIZE_T  _topstolen;     /* lines stolen from top            */
960
961         WINDOW          *_curscr;       /* current screen                   */
962         WINDOW          *_newscr;       /* virtual screen to be updated to  */
963         WINDOW          *_stdscr;       /* screen's full-window context     */
964
965 #define CurScreen(sp)  (sp)->_curscr
966 #define NewScreen(sp)  (sp)->_newscr
967 #define StdScreen(sp)  (sp)->_stdscr
968
969         TRIES           *_keytry;       /* "Try" for use with keypad mode   */
970         TRIES           *_key_ok;       /* Disabled keys via keyok(,FALSE)  */
971         bool            _tried;         /* keypad mode was initialized      */
972         bool            _keypad_on;     /* keypad mode is currently on      */
973
974         bool            _called_wgetch; /* check for recursion in wgetch()  */
975         int             _fifo[FIFO_SIZE];       /* input push-back buffer   */
976         short           _fifohead,      /* head of fifo queue               */
977                         _fifotail,      /* tail of fifo queue               */
978                         _fifopeek,      /* where to peek for next char      */
979                         _fifohold;      /* set if breakout marked           */
980
981         int             _endwin;        /* are we out of window mode?       */
982         NCURSES_CH_T    *_current_attr; /* holds current attributes set     */
983         int             _coloron;       /* is color enabled?                */
984         int             _color_defs;    /* are colors modified              */
985         int             _cursor;        /* visibility of the cursor         */
986         int             _cursrow;       /* physical cursor row              */
987         int             _curscol;       /* physical cursor column           */
988         bool            _notty;         /* true if we cannot switch non-tty */
989         int             _nl;            /* True if NL -> CR/NL is on        */
990         int             _raw;           /* True if in raw mode              */
991         int             _cbreak;        /* 1 if in cbreak mode              */
992                                         /* > 1 if in halfdelay mode         */
993         int             _echo;          /* True if echo on                  */
994         int             _use_meta;      /* use the meta key?                */
995         struct _SLK     *_slk;          /* ptr to soft key struct / NULL    */
996         int             slk_format;     /* selected format for this screen  */
997         /* cursor movement costs; units are 10ths of milliseconds */
998         int             _char_padding;  /* cost of character put            */
999         int             _cr_cost;       /* cost of (carriage_return)        */
1000         int             _cup_cost;      /* cost of (cursor_address)         */
1001         int             _home_cost;     /* cost of (cursor_home)            */
1002         int             _ll_cost;       /* cost of (cursor_to_ll)           */
1003         int             _cub1_cost;     /* cost of (cursor_left)            */
1004         int             _cuf1_cost;     /* cost of (cursor_right)           */
1005         int             _cud1_cost;     /* cost of (cursor_down)            */
1006         int             _cuu1_cost;     /* cost of (cursor_up)              */
1007         int             _cub_cost;      /* cost of (parm_cursor_left)       */
1008         int             _cuf_cost;      /* cost of (parm_cursor_right)      */
1009         int             _cud_cost;      /* cost of (parm_cursor_down)       */
1010         int             _cuu_cost;      /* cost of (parm_cursor_up)         */
1011         int             _hpa_cost;      /* cost of (column_address)         */
1012         int             _vpa_cost;      /* cost of (row_address)            */
1013         /* used in tty_update.c, must be chars */
1014         int             _ed_cost;       /* cost of (clr_eos)                */
1015         int             _el_cost;       /* cost of (clr_eol)                */
1016         int             _el1_cost;      /* cost of (clr_bol)                */
1017         int             _dch1_cost;     /* cost of (delete_character)       */
1018         int             _ich1_cost;     /* cost of (insert_character)       */
1019         int             _dch_cost;      /* cost of (parm_dch)               */
1020         int             _ich_cost;      /* cost of (parm_ich)               */
1021         int             _ech_cost;      /* cost of (erase_chars)            */
1022         int             _rep_cost;      /* cost of (repeat_char)            */
1023         int             _hpa_ch_cost;   /* cost of (column_address)         */
1024         int             _cup_ch_cost;   /* cost of (cursor_address)         */
1025         int             _cuf_ch_cost;   /* cost of (parm_cursor_right)      */
1026         int             _inline_cost;   /* cost of inline-move              */
1027         int             _smir_cost;     /* cost of (enter_insert_mode)      */
1028         int             _rmir_cost;     /* cost of (exit_insert_mode)       */
1029         int             _ip_cost;       /* cost of (insert_padding)         */
1030         /* used in lib_mvcur.c */
1031         char *          _address_cursor;
1032         /* used in tty_update.c */
1033         int             _scrolling;     /* 1 if terminal's smart enough to  */
1034
1035         /* used in lib_color.c */
1036         rgb_bits_t      _direct_color;  /* RGB overrides color-table         */
1037         color_t         *_color_table;  /* screen's color palette            */
1038         int             _color_count;   /* count of colors in palette        */
1039         colorpair_t     *_color_pairs;  /* screen's color pair list          */
1040         int             _pair_count;    /* same as COLOR_PAIRS               */
1041         int             _pair_limit;    /* actual limit of color-pairs       */
1042         int             _pair_alloc;    /* current table-size of color-pairs */
1043         chtype          _ok_attributes; /* valid attributes for terminal     */
1044         chtype          _xmc_suppress;  /* attributes to suppress if xmc     */
1045         chtype          _xmc_triggers;  /* attributes to process if xmc      */
1046         chtype *        _acs_map;       /* the real alternate-charset map    */
1047         bool *          _screen_acs_map;
1048
1049
1050         /* used in lib_vidattr.c */
1051         bool            _use_rmso;      /* true if we may use 'rmso'         */
1052         bool            _use_rmul;      /* true if we may use 'rmul'         */
1053
1054         /*
1055          * These data correspond to the state of the idcok() and idlok()
1056          * functions.  A caveat is in order here:  the XSI and SVr4
1057          * documentation specify that these functions apply to the window which
1058          * is given as an argument.  However, ncurses implements this logic
1059          * only for the newscr/curscr update process, _not_ per-window.
1060          */
1061         bool            _nc_sp_idlok;
1062         bool            _nc_sp_idcok;
1063
1064         /*
1065          * These are the data that support the mouse interface.
1066          */
1067         bool            _mouse_initialized;
1068         MouseType       _mouse_type;
1069         int             _maxclick;
1070         bool            (*_mouse_event) (SCREEN *);
1071         bool            (*_mouse_inline)(SCREEN *);
1072         bool            (*_mouse_parse) (SCREEN *, int);
1073         void            (*_mouse_resume)(SCREEN *);
1074         void            (*_mouse_wrap)  (SCREEN *);
1075         int             _mouse_fd;      /* file-descriptor, if any */
1076         bool            _mouse_active;  /* true if initialized */
1077         mmask_t         _mouse_mask;    /* set via mousemask() */
1078         mmask_t         _mouse_mask2;   /* OR's in press/release bits */
1079         mmask_t         _mouse_bstate;
1080         MouseFormat     _mouse_format;  /* type of xterm mouse protocol */
1081         NCURSES_CONST char *_mouse_xtermcap; /* string to enable/disable mouse */
1082         MEVENT          _mouse_events[EV_MAX];  /* hold the last mouse event seen */
1083         MEVENT          *_mouse_eventp; /* next free slot in event queue */
1084
1085         /*
1086          * These are data that support the proper handling of the panel stack on an
1087          * per screen basis.
1088          */
1089         struct panelhook _panelHook;
1090
1091         bool            _sig_winch;
1092         SCREEN          *_next_screen;
1093
1094         /* hashes for old and new lines */
1095         unsigned long   *oldhash, *newhash;
1096         HASHMAP         *hashtab;
1097         int             hashtab_len;
1098         int             *_oldnum_list;
1099         int             _oldnum_size;
1100
1101         NCURSES_SP_OUTC _outch;         /* output handler if not putc */
1102         NCURSES_OUTC    jump;
1103
1104         ripoff_t        rippedoff[N_RIPS];
1105         ripoff_t        *rsp;
1106
1107         int             _legacy_coding; /* see use_legacy_coding() */
1108
1109 #if NCURSES_NO_PADDING
1110         bool            _no_padding;    /* flag to set if padding disabled  */
1111 #endif
1112
1113 #if USE_HARD_TABS
1114         int             _ht_cost;       /* cost of (tab)                    */
1115         int             _cbt_cost;      /* cost of (backtab)                */
1116 #endif /* USE_HARD_TABS */
1117
1118         /* used in lib_vidattr.c */
1119 #if USE_ITALIC
1120         bool            _use_ritm;      /* true if we may use 'ritm'         */
1121 #endif
1122
1123         /* used in getch/twait */
1124 #if USE_KLIBC_KBD
1125         bool            _extended_key;  /* true if an extended key           */
1126 #endif
1127
1128         /* used in lib_color.c */
1129 #if NCURSES_EXT_FUNCS
1130         bool            _assumed_color; /* use assumed colors                */
1131         bool            _default_color; /* use default colors                */
1132         bool            _has_sgr_39_49; /* has ECMA default color support    */
1133         int             _default_fg;    /* assumed default foreground        */
1134         int             _default_bg;    /* assumed default background        */
1135         int             _default_pairs; /* count pairs using default color   */
1136 #endif
1137
1138         /* system-dependent mouse data */
1139 #if USE_GPM_SUPPORT
1140         bool            _mouse_gpm_loaded;
1141         bool            _mouse_gpm_found;
1142 #ifdef HAVE_LIBDL
1143         void            *_dlopen_gpm;
1144         TYPE_gpm_fd     _mouse_gpm_fd;
1145         TYPE_Gpm_Open   _mouse_Gpm_Open;
1146         TYPE_Gpm_Close  _mouse_Gpm_Close;
1147         TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent;
1148 #endif
1149         Gpm_Connect     _mouse_gpm_connect;
1150 #endif /* USE_GPM_SUPPORT */
1151
1152 #if USE_EMX_MOUSE
1153         int             _emxmouse_wfd;
1154         int             _emxmouse_thread;
1155         int             _emxmouse_activated;
1156         char            _emxmouse_buttons[4];
1157 #endif
1158
1159 #if USE_SYSMOUSE
1160         MEVENT          _sysmouse_fifo[FIFO_SIZE];
1161         int             _sysmouse_head;
1162         int             _sysmouse_tail;
1163         int             _sysmouse_char_width;   /* character width */
1164         int             _sysmouse_char_height;  /* character height */
1165         int             _sysmouse_old_buttons;
1166         int             _sysmouse_new_buttons;
1167 #endif
1168
1169 #if defined(USE_TERM_DRIVER) || defined(EXP_WIN32_DRIVER)
1170         MEVENT          _drv_mouse_fifo[FIFO_SIZE];
1171         int             _drv_mouse_head;
1172         int             _drv_mouse_tail;
1173         int             _drv_mouse_old_buttons;
1174         int             _drv_mouse_new_buttons;
1175 #endif
1176         /*
1177          * This supports automatic resizing
1178          */
1179 #if USE_SIZECHANGE
1180         int             (*_resize)(NCURSES_SP_DCLx int y, int x);
1181         int             (*_ungetch)(SCREEN *, int);
1182 #endif
1183
1184 #ifdef USE_SP_WINDOWLIST
1185         WINDOWLIST*     _windowlist;
1186 #define WindowList(sp)  (sp)->_windowlist
1187 #endif
1188
1189 #if USE_REENTRANT
1190         char            _ttytype[NAMESIZE];
1191         int             _ESCDELAY;
1192         int             _TABSIZE;
1193         int             _LINES;
1194         int             _COLS;
1195 #endif
1196
1197 #if NCURSES_SP_FUNCS
1198         bool            use_tioctl;
1199 #endif
1200
1201         /*
1202          * ncurses/ncursesw are the same up to this point.
1203          */
1204 #if USE_WIDEC_SUPPORT
1205         /* recent versions of 'screen' have partially-working support for
1206          * UTF-8, but do not permit ACS at the same time (see tty_update.c).
1207          */
1208         bool            _screen_acs_fix;
1209         bool            _screen_unicode;
1210 #endif
1211
1212 #if NCURSES_EXT_FUNCS && NCURSES_EXT_COLORS
1213         void            *_ordered_pairs; /* index used by alloc_pair()       */
1214         int             _pairs_used;    /* actual number of color-pairs used */
1215         int             _recent_pair;   /* number for most recent free-pair  */
1216 #endif
1217
1218 #ifdef TRACE
1219         char            tracechr_buf[40];
1220         char            tracemse_buf[TRACEMSE_MAX];
1221 #if USE_REENTRANT
1222         long            _outchars;
1223         const char      *_tputs_trace;
1224 #endif
1225 #endif
1226 #undef SCREEN
1227 } SCREEN;
1228
1229 extern NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain;
1230 extern NCURSES_EXPORT_VAR(SIG_ATOMIC_T) _nc_have_sigwinch;
1231
1232         WINDOWLIST {
1233         WINDOWLIST *next;
1234         SCREEN *screen;         /* screen containing the window */
1235         WINDOW  win;            /* WINDOW_EXT() needs to account for offset */
1236 #if NCURSES_WIDECHAR
1237         char addch_work[(MB_LEN_MAX * 9) + 1];
1238         unsigned addch_used;    /* number of bytes in addch_work[] */
1239         int addch_x;            /* x-position for addch_work[] */
1240         int addch_y;            /* y-position for addch_work[] */
1241 #endif
1242 };
1243
1244 #define WINDOW_EXT(w,m) (((WINDOWLIST *)((void *)((char *)(w) - offsetof(WINDOWLIST, win))))->m)
1245
1246 #ifdef USE_SP_WINDOWLIST
1247 #define SP_INIT_WINDOWLIST(sp)  WindowList(sp) = 0
1248 #else
1249 #define SP_INIT_WINDOWLIST(sp)  /* nothing */
1250 #endif
1251
1252 #define SP_PRE_INIT(sp)                         \
1253     sp->_cursrow = -1;                          \
1254     sp->_curscol = -1;                          \
1255     sp->_nl = TRUE;                             \
1256     sp->_raw = FALSE;                           \
1257     sp->_cbreak = 0;                            \
1258     sp->_echo = TRUE;                           \
1259     sp->_fifohead = -1;                         \
1260     sp->_endwin = ewSuspend;                    \
1261     sp->_cursor = -1;                           \
1262     SP_INIT_WINDOWLIST(sp);                     \
1263     sp->_outch = NCURSES_OUTC_FUNC;             \
1264     sp->jump = 0                                \
1265
1266 /* usually in <limits.h> */
1267 #ifndef UCHAR_MAX
1268 #define UCHAR_MAX 255
1269 #endif
1270
1271 /* The terminfo source is assumed to be 7-bit ASCII */
1272 #define is7bits(c)      ((unsigned)(c) < 128)
1273
1274 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
1275 #define is8bits(c)      ((unsigned)(c) <= UCHAR_MAX)
1276
1277 #ifndef min
1278 #define min(a,b)        ((a) > (b)  ?  (b)  :  (a))
1279 #endif
1280
1281 #ifndef max
1282 #define max(a,b)        ((a) < (b)  ?  (b)  :  (a))
1283 #endif
1284
1285 /* usually in <unistd.h> */
1286 #ifndef STDIN_FILENO
1287 #define STDIN_FILENO 0
1288 #endif
1289
1290 #ifndef STDOUT_FILENO
1291 #define STDOUT_FILENO 1
1292 #endif
1293
1294 #ifndef STDERR_FILENO
1295 #define STDERR_FILENO 2
1296 #endif
1297
1298 #ifndef EXIT_SUCCESS
1299 #define EXIT_SUCCESS 0
1300 #endif
1301
1302 #ifndef EXIT_FAILURE
1303 #define EXIT_FAILURE 1
1304 #endif
1305
1306 #ifndef R_OK
1307 #define R_OK    4               /* Test for read permission.  */
1308 #endif
1309 #ifndef W_OK
1310 #define W_OK    2               /* Test for write permission.  */
1311 #endif
1312 #ifndef X_OK
1313 #define X_OK    1               /* Test for execute permission.  */
1314 #endif
1315 #ifndef F_OK
1316 #define F_OK    0               /* Test for existence.  */
1317 #endif
1318
1319 #if HAVE_FCNTL_H
1320 #include <fcntl.h>              /* may define O_BINARY  */
1321 #endif
1322
1323 #ifndef O_BINARY
1324 #define O_BINARY 0
1325 #endif
1326
1327 #ifdef TRACE
1328 #if USE_REENTRANT
1329 #define COUNT_OUTCHARS(n) _nc_count_outchars(n);
1330 #else
1331 #define COUNT_OUTCHARS(n) _nc_outchars += (n);
1332 #endif
1333 #else
1334 #define COUNT_OUTCHARS(n) /* nothing */
1335 #endif
1336
1337 #define RESET_OUTCHARS() COUNT_OUTCHARS(-_nc_outchars)
1338
1339 #define UChar(c)        ((unsigned char)(c))
1340 #define UShort(c)       ((unsigned short)(c))
1341 #define ChCharOf(c)     ((chtype)(c) & (chtype)A_CHARTEXT)
1342 #define ChAttrOf(c)     ((chtype)(c) & (chtype)A_ATTRIBUTES)
1343
1344 #define TR_PUTC(c)      TR(TRACE_CHARPUT, ("PUTC %#x", UChar(c)))
1345
1346 #ifndef MB_LEN_MAX
1347 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
1348 #endif
1349
1350 #if USE_WIDEC_SUPPORT /* { */
1351 #define isEILSEQ(status) (((size_t)status == (size_t)-1) && (errno == EILSEQ))
1352
1353 #define init_mb(state)  memset(&(state), 0, sizeof(state))
1354
1355 #if NCURSES_EXT_COLORS
1356 #define NulColor        , 0
1357 #else
1358 #define NulColor        /* nothing */
1359 #endif
1360
1361 #define NulChar         0,0,0,0 /* FIXME: see CCHARW_MAX */
1362 #define CharOf(c)       ((c).chars[0])
1363 #define AttrOf(c)       ((c).attr)
1364
1365 #define AddAttr(c,a)    AttrOf(c) |=  ((a) & A_ATTRIBUTES)
1366 #define RemAttr(c,a)    AttrOf(c) &= ~((a) & A_ATTRIBUTES)
1367 #define SetAttr(c,a)    AttrOf(c) =   ((a) & A_ATTRIBUTES) | WidecExt(c)
1368
1369 #define NewChar2(c,a)   { a, { c, NulChar } NulColor }
1370 #define NewChar(ch)     NewChar2(ChCharOf(ch), ChAttrOf(ch))
1371
1372 #if CCHARW_MAX == 5
1373 #define CharEq(a,b)     (((a).attr == (b).attr) \
1374                        && (a).chars[0] == (b).chars[0] \
1375                        && (a).chars[1] == (b).chars[1] \
1376                        && (a).chars[2] == (b).chars[2] \
1377                        && (a).chars[3] == (b).chars[3] \
1378                        && (a).chars[4] == (b).chars[4] \
1379                         if_EXT_COLORS(&& (a).ext_color == (b).ext_color))
1380 #elif CCHARW_MAX > 0
1381 #error Inconsistent values for CCHARW_MAX
1382 #else
1383 #define CharEq(a,b)     (!memcmp(&(a), &(b), sizeof(a)))
1384 #endif
1385
1386 #define SetChar(ch,c,a) do {                                                        \
1387                             NCURSES_CH_T *_cp = &(ch);                              \
1388                             memset(_cp, 0, sizeof(ch));                             \
1389                             _cp->chars[0] = (wchar_t) (c);                          \
1390                             _cp->attr = (a);                                        \
1391                             if_EXT_COLORS(SetPair(ch, PairNumber(a)));              \
1392                         } while (0)
1393 #define CHREF(wch)      (&(wch))
1394 #define CHDEREF(wch)    (*(wch))
1395 #define ARG_CH_T        NCURSES_CH_T *
1396 #define CARG_CH_T       const NCURSES_CH_T *
1397 #define PUTC_DATA       char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
1398                         mbstate_t PUT_st; wchar_t PUTC_ch
1399 #define PUTC_INIT       init_mb (PUT_st)
1400 #define PUTC(ch)        do { if(!isWidecExt(ch)) {                                  \
1401                         if (Charable(ch)) {                                         \
1402                             TR_PUTC(CharOf(ch));                                    \
1403                             NCURSES_OUTC_FUNC (NCURSES_SP_ARGx CharOf(ch));         \
1404                             COUNT_OUTCHARS(1);                                      \
1405                         } else {                                                    \
1406                             for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) {       \
1407                                 PUTC_ch = (ch).chars[PUTC_i];                       \
1408                                 if (PUTC_ch == L'\0')                               \
1409                                     break;                                          \
1410                                 PUTC_INIT;                                          \
1411                                 PUTC_n = (int) wcrtomb(PUTC_buf,                    \
1412                                                        (ch).chars[PUTC_i], &PUT_st); \
1413                                 if (PUTC_n <= 0) {                                  \
1414                                     if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) { \
1415                                         TR_PUTC(CharOf(ch));                        \
1416                                         NCURSES_OUTC_FUNC (NCURSES_SP_ARGx CharOf(ch)); \
1417                                     }                                               \
1418                                     break;                                          \
1419                                 } else {                                            \
1420                                     int PUTC_j;                                     \
1421                                     for (PUTC_j = 0; PUTC_j < PUTC_n; ++PUTC_j) {   \
1422                                         TR_PUTC(PUTC_buf[PUTC_j]);                  \
1423                                         NCURSES_OUTC_FUNC (NCURSES_SP_ARGx PUTC_buf[PUTC_j]); \
1424                                     }                                               \
1425                                 }                                                   \
1426                             }                                                       \
1427                             COUNT_OUTCHARS(PUTC_i);                                 \
1428                         } } } while (0)
1429
1430 #define BLANK           NewChar2(' ', WA_NORMAL)
1431 #define ZEROS           NewChar2('\0', WA_NORMAL)
1432 #define ISBLANK(ch)     ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
1433
1434         /*
1435          * Wide characters cannot be represented in the A_CHARTEXT mask of
1436          * attr_t's but an application might have set a narrow character there.
1437          * But even in that case, it would only be a printable character, or
1438          * zero.  Otherwise we can use those bits to tell if a cell is the
1439          * first or extension part of a wide character.
1440          */
1441 #define WidecExt(ch)    (int) (AttrOf(ch) & A_CHARTEXT)
1442 #define isWidecBase(ch) (WidecExt(ch) == 1)
1443 #define isWidecExt(ch)  (WidecExt(ch) > 1 && WidecExt(ch) < 32)
1444 #define SetWidecExt(dst, ext)   AttrOf(dst) &= ~A_CHARTEXT,             \
1445                                 AttrOf(dst) |= (attr_t) (ext + 1)
1446
1447 #define if_WIDEC(code)  code
1448 #define Charable(ch)    (((SP_PARM->_legacy_coding)                     \
1449                          || (AttrOf(ch) & A_ALTCHARSET)                 \
1450                          || (!isWidecExt(ch))) &&                       \
1451                              (ch).chars[1] == L'\0' &&                  \
1452                              _nc_is_charable(CharOf(ch)))
1453
1454 #define L(ch)           L ## ch
1455 #else /* }{ */
1456 #define CharOf(c)       ChCharOf(c)
1457 #define AttrOf(c)       ChAttrOf(c)
1458 #define AddAttr(c,a)    c |= (a)
1459 #define RemAttr(c,a)    c &= ~((a) & A_ATTRIBUTES)
1460 #define SetAttr(c,a)    c = ((c) & ~A_ATTRIBUTES) | (a)
1461 #define NewChar(ch)     (ch)
1462 #define NewChar2(c,a)   ((c) | (a))
1463 #define CharEq(a,b)     ((a) == (b))
1464 #define SetChar(ch,c,a) ch = (c) | (a)
1465 #define CHREF(wch)      wch
1466 #define CHDEREF(wch)    wch
1467 #define ARG_CH_T        NCURSES_CH_T
1468 #define CARG_CH_T       NCURSES_CH_T
1469 #define PUTC_DATA       /* nothing */
1470 #define PUTC(ch)        { \
1471                             TR_PUTC(ch); \
1472                             NCURSES_OUTC_FUNC (NCURSES_SP_ARGx (int) ch); \
1473                         }
1474
1475 #define BLANK           (' '|A_NORMAL)
1476 #define ZEROS           ('\0'|A_NORMAL)
1477 #define ISBLANK(ch)     (CharOf(ch) == ' ')
1478
1479 #define isWidecExt(ch)  (0)
1480 #define if_WIDEC(code) /* nothing */
1481
1482 #define Charable(ch)    ((ch) >= ' ' && (ch) <= '~')
1483 #define L(ch)           ch
1484 #endif /* } */
1485
1486 #define AttrOfD(ch)     AttrOf(CHDEREF(ch))
1487 #define CharOfD(ch)     CharOf(CHDEREF(ch))
1488 #define SetChar2(wch,ch)    SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
1489
1490 #define BLANK_ATTR      A_NORMAL
1491 #define BLANK_TEXT      L(' ')
1492
1493 #define CHANGED     -1
1494
1495 #define LEGALYX(w, y, x) \
1496               ((w) != 0 && \
1497                 ((x) >= 0 && (x) <= (w)->_maxx && \
1498                  (y) >= 0 && (y) <= (w)->_maxy))
1499
1500 #define CHANGED_CELL(line,col) \
1501         if (line->firstchar == _NOCHANGE) \
1502                 line->firstchar = line->lastchar = (NCURSES_SIZE_T) (col); \
1503         else if ((col) < line->firstchar) \
1504                 line->firstchar = (NCURSES_SIZE_T) (col); \
1505         else if ((col) > line->lastchar) \
1506                 line->lastchar = (NCURSES_SIZE_T) (col)
1507
1508 #define CHANGED_RANGE(line,start,end) \
1509         if (line->firstchar == _NOCHANGE \
1510          || line->firstchar > (start)) \
1511                 line->firstchar = (NCURSES_SIZE_T) (start); \
1512         if (line->lastchar == _NOCHANGE \
1513          || line->lastchar < (end)) \
1514                 line->lastchar = (NCURSES_SIZE_T) (end)
1515
1516 #define CHANGED_TO_EOL(line,start,end) \
1517         if (line->firstchar == _NOCHANGE \
1518          || line->firstchar > (start)) \
1519                 line->firstchar = (NCURSES_SIZE_T) (start); \
1520         line->lastchar = (NCURSES_SIZE_T) (end)
1521
1522 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
1523
1524 #define FreeIfNeeded(p)  if ((p) != 0) free(p)
1525
1526 /* FreeAndNull() is not a comma-separated expression because some compilers
1527  * do not accept a mixture of void with values.
1528  */
1529 #define FreeAndNull(p)   do { free(p); p = 0; } while (0)
1530
1531 #include <nc_alloc.h>
1532 #include <nc_access.h>
1533
1534 /*
1535  * Use these for tic/infocmp malloc failures.  Generally the ncurses library
1536  * tries to limp along after a failure.
1537  */
1538 #define TYPE_MALLOC(type, size, name) \
1539         do { \
1540             name = typeMalloc(type, size); \
1541             if (name == 0) \
1542                 _nc_err_abort(MSG_NO_MEMORY); \
1543         } while (0)
1544
1545 #define TYPE_CALLOC(type, size, name) \
1546         do { \
1547             name = typeCalloc(type, size); \
1548             if (name == 0) \
1549                 _nc_err_abort(MSG_NO_MEMORY); \
1550         } while (0)
1551
1552 #define TYPE_REALLOC(type, size, name) \
1553         do { \
1554             name = typeRealloc(type, size, name); \
1555             if (name == 0) \
1556                 _nc_err_abort(MSG_NO_MEMORY); \
1557         } while (0)
1558
1559 /*
1560  * TTY bit definition for converting tabs to spaces.
1561  */
1562 #ifdef TAB3
1563 # define OFLAGS_TABS TAB3       /* POSIX specifies TAB3 */
1564 #else
1565 # ifdef XTABS
1566 #  define OFLAGS_TABS XTABS     /* XTABS is usually the "same" */
1567 # else
1568 #  ifdef OXTABS
1569 #   define OFLAGS_TABS OXTABS   /* the traditional BSD equivalent */
1570 #  else
1571 #   define OFLAGS_TABS 0
1572 #  endif
1573 # endif
1574 #endif
1575
1576 #ifdef __TANDEM
1577 #define ROOT_UID 65535
1578 #endif
1579
1580 #ifndef ROOT_UID
1581 #define ROOT_UID 0
1582 #endif
1583
1584 /*
1585  * Standardize/simplify common loops
1586  */
1587 #define each_screen(p) p = _nc_screen_chain; p != 0; p = (p)->_next_screen
1588 #define each_window(sp,p) p = WindowList(sp); p != 0; p = (p)->next
1589 #define each_ripoff(p) p = safe_ripoff_stack; (p - safe_ripoff_stack) < N_RIPS; ++p
1590
1591 /*
1592  * Prefixes for call/return points of library function traces.  We use these to
1593  * instrument the public functions so that the traces can be easily transformed
1594  * into regression scripts.
1595  */
1596 #define T_CALLED(fmt) "called {" fmt
1597 #define T_CREATE(fmt) "create :" fmt
1598 #define T_RETURN(fmt) "return }" fmt
1599
1600 #define NonNull(s)              ((s) != 0 ? s : "<null>")
1601 #define NonEmpty(s)             ((s) != 0 && *(s) != '\0')
1602
1603 #ifdef TRACE
1604
1605 #if USE_REENTRANT
1606 #define TPUTS_TRACE(s)  _nc_set_tputs_trace(s);
1607 #else
1608 #define TPUTS_TRACE(s)  _nc_tputs_trace = s;
1609 #endif
1610
1611 #ifdef HAVE_CONSISTENT_GETENV
1612 #define START_TRACE() \
1613         if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
1614             int t = _nc_getenv_num("NCURSES_TRACE"); \
1615             if (t >= 0) \
1616                 curses_trace((unsigned) t); \
1617         }
1618 #else
1619 #define START_TRACE() /* nothing */
1620 #endif
1621
1622 /*
1623  * Many of the _tracef() calls use static buffers; lock the trace state before
1624  * trying to fill them.
1625  */
1626 #if USE_REENTRANT
1627 #define USE_TRACEF(mask) _nc_use_tracef(mask)
1628 extern NCURSES_EXPORT(int)      _nc_use_tracef (unsigned);
1629 extern NCURSES_EXPORT(void)     _nc_locked_tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1630 #else
1631 #define USE_TRACEF(mask) (_nc_tracing & (mask))
1632 #define _nc_locked_tracef _tracef
1633 #endif
1634
1635 #define TR(n, a)        if (USE_TRACEF(n)) _nc_locked_tracef a
1636 #define T(a)            TR(TRACE_CALLS, a)
1637 #define TRACE_RETURN(value,type)     return _nc_retrace_##type((type)(value))
1638 #define TRACE_RETURN1(value,dst)     return _nc_retrace_##dst(value)
1639 #define TRACE_RETURN2(value,dst,src) return _nc_retrace_##dst##_##src(value)
1640 #define TRACE_RETURN_SP(value,type)  return _nc_retrace_##type(SP_PARM, value)
1641
1642 typedef void VoidFunc(void);
1643
1644 #define TR_FUNC_LEN             ((sizeof(void *) + sizeof(void (*)(void))) * 2 + 4)
1645 #define TR_FUNC_BFR(max)        char tr_func_data[max][TR_FUNC_LEN]
1646 #define TR_FUNC_ARG(num,func)   _nc_fmt_funcptr(&tr_func_data[num][0], (const char *)&(func), sizeof((func)))
1647
1648 #define returnAttr(code)        TRACE_RETURN(code,attr_t)
1649 #define returnBits(code)        TRACE_RETURN(code,unsigned)
1650 #define returnBool(code)        TRACE_RETURN(code,bool)
1651 #define returnCPtr(code)        TRACE_RETURN1(code,cptr)
1652 #define returnCVoidPtr(code)    TRACE_RETURN1(code,cvoid_ptr)
1653 #define returnChar(code)        TRACE_RETURN(code,char)
1654 #define returnChtype(code)      TRACE_RETURN(code,chtype)
1655 #define returnCode(code)        TRACE_RETURN(code,int)
1656 #define returnIntAttr(code)     TRACE_RETURN2(code,int,attr_t)
1657 #define returnMMask(code)       TRACE_RETURN_SP(code,mmask_t)
1658 #define returnPtr(code)         TRACE_RETURN1(code,ptr)
1659 #define returnSP(code)          TRACE_RETURN1(code,sp)
1660 #define returnVoid              T((T_RETURN(""))); return
1661 #define returnVoidPtr(code)     TRACE_RETURN1(code,void_ptr)
1662 #define returnWin(code)         TRACE_RETURN1(code,win)
1663
1664 #define returnDB(rc)            do { TR(TRACE_DATABASE,(T_RETURN("code %d"), (rc))); return (rc); } while (0)
1665 #define returnPtrDB(rc)         do { TR(TRACE_DATABASE,(T_RETURN("%p"), (rc))); return (rc); } while (0)
1666 #define returnVoidDB            do { TR(TRACE_DATABASE,(T_RETURN(""))); return; } while (0)
1667
1668 extern NCURSES_EXPORT(NCURSES_BOOL)     _nc_retrace_bool (int);
1669 extern NCURSES_EXPORT(NCURSES_CONST void *) _nc_retrace_cvoid_ptr (NCURSES_CONST void *);
1670 extern NCURSES_EXPORT(SCREEN *)         _nc_retrace_sp (SCREEN *);
1671 extern NCURSES_EXPORT(WINDOW *)         _nc_retrace_win (WINDOW *);
1672 extern NCURSES_EXPORT(attr_t)           _nc_retrace_attr_t (attr_t);
1673 extern NCURSES_EXPORT(char *)           _nc_retrace_ptr (char *);
1674 extern NCURSES_EXPORT(char *)           _nc_trace_ttymode(const TTY *tty);
1675 extern NCURSES_EXPORT(char *)           _nc_varargs (const char *, va_list);
1676 extern NCURSES_EXPORT(chtype)           _nc_retrace_chtype (chtype);
1677 extern NCURSES_EXPORT(const char *)     _nc_altcharset_name(attr_t, chtype);
1678 extern NCURSES_EXPORT(const char *)     _nc_retrace_cptr (const char *);
1679 extern NCURSES_EXPORT(char)             _nc_retrace_char (int);
1680 extern NCURSES_EXPORT(int)              _nc_retrace_int (int);
1681 extern NCURSES_EXPORT(int)              _nc_retrace_int_attr_t (attr_t);
1682 extern NCURSES_EXPORT(mmask_t)          _nc_retrace_mmask_t (SCREEN *, mmask_t);
1683 extern NCURSES_EXPORT(unsigned)         _nc_retrace_unsigned (unsigned);
1684 extern NCURSES_EXPORT(void *)           _nc_retrace_void_ptr (void *);
1685 extern NCURSES_EXPORT(void)             _nc_fifo_dump (SCREEN *);
1686
1687 extern NCURSES_EXPORT(char *)           _nc_fmt_funcptr(char *, const char *, size_t);
1688
1689 #if USE_REENTRANT
1690 NCURSES_WRAPPED_VAR(long, _nc_outchars);
1691 NCURSES_WRAPPED_VAR(const char *, _nc_tputs_trace);
1692 #define _nc_outchars       NCURSES_PUBLIC_VAR(_nc_outchars())
1693 #define _nc_tputs_trace    NCURSES_PUBLIC_VAR(_nc_tputs_trace())
1694 extern NCURSES_EXPORT(void)             _nc_set_tputs_trace (const char *);
1695 extern NCURSES_EXPORT(void)             _nc_count_outchars (long);
1696 #else
1697 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace;
1698 extern NCURSES_EXPORT_VAR(long)         _nc_outchars;
1699 #endif
1700
1701 extern NCURSES_EXPORT_VAR(unsigned)     _nc_tracing;
1702
1703 extern NCURSES_EXPORT(char *) _nc_tracebits (void);
1704 extern NCURSES_EXPORT(char *) _tracemouse (const MEVENT *);
1705 extern NCURSES_EXPORT(void) _tracedump (const char *, WINDOW *);
1706
1707 #if USE_WIDEC_SUPPORT
1708 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
1709 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
1710 #endif
1711
1712 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T *, int);
1713 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T *, int);
1714
1715 #else /* !TRACE */
1716
1717 #define START_TRACE() /* nothing */
1718
1719 #define T(a)
1720 #define TR(n, a)
1721 #define TPUTS_TRACE(s)
1722 #define TR_FUNC_BFR(max)
1723
1724 #define returnAttr(code)        return code
1725 #define returnBits(code)        return code
1726 #define returnBool(code)        return code
1727 #define returnCPtr(code)        return code
1728 #define returnCVoidPtr(code)    return code
1729 #define returnChar(code)        return ((char) code)
1730 #define returnChtype(code)      return code
1731 #define returnCode(code)        return code
1732 #define returnIntAttr(code)     return code
1733 #define returnMMask(code)       return code
1734 #define returnPtr(code)         return code
1735 #define returnSP(code)          return code
1736 #define returnVoid              return
1737 #define returnVoidPtr(code)     return code
1738 #define returnWin(code)         return code
1739
1740 #define returnDB(code)          return code
1741 #define returnPtrDB(rc)         return rc
1742 #define returnVoidDB            return
1743
1744 #endif /* TRACE/!TRACE */
1745
1746 /*
1747  * Workaround for defective implementation of gcc attribute warn_unused_result
1748  */
1749 #if defined(__GNUC__) && defined(_FORTIFY_SOURCE)
1750 #define IGNORE_RC(func) errno = (int) func
1751 #else
1752 #define IGNORE_RC(func) (void) func
1753 #endif /* gcc workarounds */
1754
1755 /*
1756  * Return-codes for tgetent() and friends.
1757  */
1758 #define TGETENT_YES  1          /* entry is found */
1759 #define TGETENT_NO   0          /* entry is not found */
1760 #define TGETENT_ERR -1          /* an error occurred */
1761
1762 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
1763 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
1764
1765 #define EMPTY_MODULE(name) \
1766 extern  NCURSES_EXPORT(void) name (void); \
1767         NCURSES_EXPORT(void) name (void) { }
1768
1769 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
1770 #define NONBLANK_ATTR (A_BOLD | A_DIM | A_BLINK | A_ITALIC)
1771 #define TPARM_ATTR    (A_STANDOUT | A_UNDERLINE | A_REVERSE | A_BLINK | A_DIM | A_BOLD | A_ALTCHARSET | A_INVIS | A_PROTECT)
1772 #define XMC_CONFLICT  (A_STANDOUT | A_UNDERLINE | A_REVERSE | A_BLINK | A_DIM | A_BOLD | A_INVIS | A_PROTECT | A_ITALIC)
1773 #define XMC_CHANGES(c) ((c) & SP_PARM->_xmc_suppress)
1774
1775 #define toggle_attr_on(S,at) {\
1776    if (PairNumber(at) > 0) {\
1777       (S) = ((S) & ALL_BUT_COLOR) | (attr_t) (at);\
1778    } else {\
1779       (S) |= (attr_t) (at);\
1780    }\
1781    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1782
1783
1784 #define toggle_attr_off(S,at) {\
1785    if (PairNumber(at) > 0) {\
1786       (S) &= ~(at|A_COLOR);\
1787    } else {\
1788       (S) &= ~(at);\
1789    }\
1790    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1791
1792 #define DelCharCost(sp,count) \
1793                 ((parm_dch != 0) \
1794                 ? sp->_dch_cost \
1795                 : ((delete_character != 0) \
1796                         ? (sp->_dch1_cost * count) \
1797                         : INFINITY))
1798
1799 #define InsCharCost(sp,count) \
1800                 ((parm_ich != 0) \
1801                 ? sp->_ich_cost \
1802                 : ((enter_insert_mode && exit_insert_mode) \
1803                   ? sp->_smir_cost + sp->_rmir_cost + (sp->_ip_cost * count) \
1804                   : ((insert_character != 0) \
1805                     ? ((sp->_ich1_cost + sp->_ip_cost) * count) \
1806                     : INFINITY)))
1807
1808 #if USE_XMC_SUPPORT
1809 #define UpdateAttrs(sp,c) if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1810                                 attr_t chg = AttrOf(SCREEN_ATTRS(sp)); \
1811                                 VIDPUTS(sp, AttrOf(c), GetPair(c)); \
1812                                 if (magic_cookie_glitch > 0 \
1813                                  && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(sp))))) { \
1814                                         T(("%s @%d before glitch %d,%d", \
1815                                                 __FILE__, __LINE__, \
1816                                                 sp->_cursrow, \
1817                                                 sp->_curscol)); \
1818                                         NCURSES_SP_NAME(_nc_do_xmc_glitch)(NCURSES_SP_ARGx chg); \
1819                                 } \
1820                         }
1821 #else
1822 #define UpdateAttrs(sp,c) if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1823                                     VIDPUTS(sp, AttrOf(c), GetPair(c)); \
1824                         }
1825 #endif
1826
1827 /*
1828  * Macros to make additional parameter to implement wgetch_events()
1829  */
1830 #ifdef NCURSES_WGETCH_EVENTS
1831 #define EVENTLIST_0th(param) param
1832 #define EVENTLIST_1st(param) param
1833 #define EVENTLIST_2nd(param) , param
1834 #define TWAIT_MASK (TW_ANY | TW_EVENT)
1835 #else
1836 #define EVENTLIST_0th(param) void
1837 #define EVENTLIST_1st(param) /* nothing */
1838 #define EVENTLIST_2nd(param) /* nothing */
1839 #define TWAIT_MASK TW_ANY
1840 #endif
1841
1842 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1843
1844 #undef  toggle_attr_on
1845 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1846 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t *, attr_t);
1847
1848 #undef  toggle_attr_off
1849 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1850 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t *, attr_t);
1851
1852 #undef  DelCharCost
1853 #define DelCharCost(sp, count) NCURSES_SP_NAME(_nc_DelCharCost)(NCURSES_SP_ARGx count)
1854
1855 #undef  InsCharCost
1856 #define InsCharCost(sp, count) NCURSES_SP_NAME(_nc_InsCharCost)(NCURSES_SP_ARGx count)
1857
1858 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_DelCharCost) (NCURSES_SP_DCLx int _c);
1859 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_InsCharCost) (NCURSES_SP_DCLx int _c);
1860
1861 #undef  UpdateAttrs
1862 #define UpdateAttrs(sp,c) NCURSES_SP_NAME(_nc_UpdateAttrs)(NCURSES_SP_ARGx CHREF(c))
1863
1864 #if USE_WIDEC_SUPPORT || defined(NEED_NCURSES_CH_T)
1865 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx CARG_CH_T _c);
1866 #else
1867 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx chtype c);
1868 #endif
1869
1870 #if NCURSES_SP_FUNCS
1871 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1872 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1873 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (CARG_CH_T);
1874 #endif /* NCURSES_SP_FUNCS */
1875
1876 #else
1877
1878 extern NCURSES_EXPORT(void) _nc_expanded (void);
1879
1880 #endif
1881
1882 #if !NCURSES_EXT_FUNCS
1883 #define set_escdelay(value) ESCDELAY = value
1884 #endif
1885
1886 #if !HAVE_GETCWD
1887 #define getcwd(buf,len) getwd(buf)
1888 #endif
1889
1890 #define save_ttytype(termp) \
1891         if (TerminalType(termp).term_names != 0) { \
1892             _nc_STRNCPY(ttytype, \
1893                         TerminalType(termp).term_names, \
1894                         NAMESIZE - 1); \
1895             ttytype[NAMESIZE - 1] = '\0'; \
1896         }
1897
1898 #if !NCURSES_WCWIDTH_GRAPHICS
1899 extern NCURSES_EXPORT(int) _nc_wacs_width(unsigned);
1900 #else
1901 #define _nc_wacs_width(ch) wcwidth(ch)
1902 #endif
1903
1904 /* charable.c */
1905 #if USE_WIDEC_SUPPORT
1906 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1907 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1908 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1909 #endif
1910
1911 /* comp_captab.c */
1912 typedef struct {
1913         short   nte_name;       /* offset of name to hash on */
1914         int     nte_type;       /* BOOLEAN, NUMBER or STRING */
1915         short   nte_index;      /* index of associated variable in its array */
1916         short   nte_link;       /* index in table of next hash, or -1 */
1917 } name_table_data;
1918
1919 typedef struct
1920 {
1921         short   from;
1922         short   to;
1923         short   source;
1924 } alias_table_data;
1925
1926 /* comp_userdefs.c */
1927 typedef struct {
1928         short   ute_name;       /* offset of name to hash on */
1929         unsigned ute_type;      /* mask (BOOLEAN, NUMBER, STRING) */
1930         unsigned ute_argc;      /* number of parameters */
1931         unsigned ute_args;      /* bit-mask for string parameters */
1932         short   ute_index;      /* index of associated variable in its array */
1933         short   ute_link;       /* index in table of next hash, or -1 */
1934 } user_table_data;
1935
1936 /* doupdate.c */
1937 #if USE_XMC_SUPPORT
1938 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t);
1939 #endif
1940
1941 /* hardscroll.c */
1942 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1943 extern NCURSES_EXPORT(void) _nc_linedump (void);
1944 #endif
1945
1946 /* lib_acs.c */
1947 extern NCURSES_EXPORT(void) _nc_init_acs (void); /* corresponds to traditional 'init_acs()' */
1948 extern NCURSES_EXPORT(int)  _nc_msec_cost (const char *const, int);  /* used by 'tack' program */
1949
1950 /* lib_addch.c */
1951 #if USE_WIDEC_SUPPORT
1952 NCURSES_EXPORT(int) _nc_build_wch(WINDOW *win, ARG_CH_T ch);
1953 #endif
1954
1955 /* lib_addstr.c */
1956 #if USE_WIDEC_SUPPORT && !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
1957 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t *);
1958 #endif
1959
1960 /* lib_color.c */
1961 extern NCURSES_EXPORT(int) _nc_init_color(SCREEN *, int, int, int, int);
1962 extern NCURSES_EXPORT(int) _nc_init_pair(SCREEN *, int, int, int);
1963 extern NCURSES_EXPORT(int) _nc_pair_content(SCREEN *, int, int *, int *);
1964 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
1965 extern NCURSES_EXPORT(void) _nc_reserve_pairs(SCREEN *, int);
1966 extern NCURSES_EXPORT(void) _nc_change_pair(SCREEN *, int);
1967
1968 #define ReservePairs(sp,want) \
1969             if ((sp->_color_pairs == 0) || (want >= sp->_pair_alloc)) \
1970                 _nc_reserve_pairs(sp, want)
1971
1972 /* lib_getch.c */
1973 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW *, int *, int EVENTLIST_2nd(_nc_eventlist *));
1974
1975 /* lib_insch.c */
1976 extern NCURSES_EXPORT(int) _nc_insert_ch(SCREEN *, WINDOW *, chtype);
1977
1978 /* lib_mvcur.c */
1979 #define INFINITY        1000000 /* cost: too high to use */
1980
1981 extern NCURSES_EXPORT(int) _nc_mvcur(int yold, int xold, int ynew, int xnew);
1982
1983 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
1984 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
1985 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
1986
1987 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
1988
1989 extern NCURSES_EXPORT(void) _nc_screen_init (void);
1990 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
1991 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
1992
1993 /* lib_mouse.c */
1994 extern NCURSES_EXPORT(bool) _nc_has_mouse (SCREEN *);
1995
1996 /* lib_mvcur.c */
1997 #define INFINITY        1000000 /* cost: too high to use */
1998 #define BAUDBYTE        9       /* 9 = 7 bits + 1 parity + 1 stop */
1999
2000 /* lib_setup.c */
2001 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
2002 extern NCURSES_EXPORT(int)    _nc_unicode_locale(void);
2003 extern NCURSES_EXPORT(int)    _nc_locale_breaks_acs(TERMINAL *);
2004 extern NCURSES_EXPORT(int)    _nc_setupterm(const char *, int, int *, int);
2005 extern NCURSES_EXPORT(void)   _nc_tinfo_cmdch(TERMINAL *, int);
2006
2007 #ifdef USE_PTHREADS
2008 extern NCURSES_EXPORT(SCREEN *) _nc_find_prescr(void);
2009 extern NCURSES_EXPORT(void)   _nc_forget_prescr(void);
2010 #else
2011 #define _nc_find_prescr()     _nc_prescreen.allocated
2012 #define _nc_forget_prescr()   _nc_prescreen.allocated = 0
2013 #endif
2014
2015 /* lib_set_term.c */
2016 extern NCURSES_EXPORT(int)    _nc_ripoffline(int, int(*)(WINDOW*, int));
2017
2018 /* lib_setup.c */
2019 #define ExitTerminfo(code)    exit_terminfo(code)
2020
2021 #define SETUP_FAIL ERR
2022
2023 #define ret_error(rc, fmt, p, q)        if (errret) {\
2024                                             *errret = rc;\
2025                                             q;\
2026                                             returnCode(SETUP_FAIL);\
2027                                         } else {\
2028                                             fprintf(stderr, fmt, p);\
2029                                             q;\
2030                                             ExitTerminfo(EXIT_FAILURE);\
2031                                         }
2032
2033 #define ret_error1(rc, fmt, p, q)       ret_error(rc, "'%s': " fmt, p, q)
2034
2035 #define ret_error0(rc, msg)             if (errret) {\
2036                                             *errret = rc;\
2037                                             returnCode(SETUP_FAIL);\
2038                                         } else {\
2039                                             fprintf(stderr, msg);\
2040                                             ExitTerminfo(EXIT_FAILURE);\
2041                                         }
2042
2043 /* lib_tstp.c */
2044 #if USE_SIGWINCH
2045 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(SCREEN *);
2046 #else
2047 #define _nc_handle_sigwinch(a) /* nothing */
2048 #endif
2049
2050 /* lib_wacs.c */
2051 #if USE_WIDEC_SUPPORT
2052 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
2053 #endif
2054
2055 typedef struct {
2056     char *s_head;       /* beginning of the string (may be null) */
2057     char *s_tail;       /* end of the string (may be null) */
2058     size_t s_size;      /* current remaining size available */
2059     size_t s_init;      /* total size available */
2060 } string_desc;
2061
2062 /* strings.c */
2063 extern NCURSES_EXPORT(string_desc *) _nc_str_init (string_desc *, char *, size_t);
2064 extern NCURSES_EXPORT(string_desc *) _nc_str_null (string_desc *, size_t);
2065 extern NCURSES_EXPORT(string_desc *) _nc_str_copy (string_desc *, string_desc *);
2066 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc *, const char *);
2067 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc *, const char *);
2068
2069 #if !HAVE_STRSTR
2070 #define strstr _nc_strstr
2071 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
2072 #endif
2073
2074 /* safe_sprintf.c */
2075 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
2076
2077 /* tries.c */
2078 extern NCURSES_EXPORT(int) _nc_add_to_try (TRIES **, const char *, unsigned);
2079 extern NCURSES_EXPORT(char *) _nc_expand_try (TRIES *, unsigned, int *, size_t);
2080 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
2081 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
2082
2083 /* elsewhere ... */
2084 extern NCURSES_EXPORT(SCREEN *) _nc_screen_of (WINDOW *);
2085 extern NCURSES_EXPORT(TERMINAL*) _nc_get_cur_term (void);
2086 extern NCURSES_EXPORT(WINDOW *) _nc_makenew (int, int, int, int, int);
2087 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
2088 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
2089 extern NCURSES_EXPORT(char *) _nc_tracechar (SCREEN *, int);
2090 extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
2091 extern NCURSES_EXPORT(char *) _nc_trace_mmask_t (SCREEN *, mmask_t);
2092 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
2093 extern NCURSES_EXPORT(int) _nc_baudrate (int);
2094 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
2095 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
2096 extern NCURSES_EXPORT(int) _nc_keypad (SCREEN *, int);
2097 extern NCURSES_EXPORT(int) _nc_ospeed (int);
2098 extern NCURSES_EXPORT(int) _nc_outch (int);
2099 extern NCURSES_EXPORT(int) _nc_putchar (int);
2100 extern NCURSES_EXPORT(int) _nc_putp(const char *, const char *);
2101 extern NCURSES_EXPORT(int) _nc_putp_flush(const char *, const char *);
2102 extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE2 *const);
2103 extern NCURSES_EXPORT(int) _nc_setup_tinfo(const char *, TERMTYPE2 *);
2104 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, int, int);
2105 extern NCURSES_EXPORT(int) _nc_timed_wait (SCREEN *, int, int, int * EVENTLIST_2nd(_nc_eventlist *));
2106 extern NCURSES_EXPORT(void) _nc_init_termtype (TERMTYPE2 *const);
2107 extern NCURSES_EXPORT(void) _nc_do_color (int, int, int, NCURSES_OUTC);
2108 extern NCURSES_EXPORT(void) _nc_flush (void);
2109 extern NCURSES_EXPORT(void) _nc_free_entry (ENTRY *, TERMTYPE2 *);
2110 extern NCURSES_EXPORT(void) _nc_freeall (void);
2111 extern NCURSES_EXPORT(void) _nc_hash_map (void);
2112 extern NCURSES_EXPORT(void) _nc_init_keytry (SCREEN *);
2113 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
2114 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i);
2115 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
2116 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
2117 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, int);
2118 extern NCURSES_EXPORT(void) _nc_setenv_num (const char *, int);
2119 extern NCURSES_EXPORT(void) _nc_signal_handler (int);
2120 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW *);
2121 extern NCURSES_EXPORT(void) _nc_trace_tries (TRIES *);
2122
2123 #if NCURSES_EXT_NUMBERS
2124 extern NCURSES_EXPORT(const TERMTYPE2 *) _nc_fallback2 (const char *);
2125 #else
2126 #define _nc_fallback2(tp) _nc_fallback(tp)
2127 #endif
2128
2129 #if NCURSES_EXT_NUMBERS
2130 extern NCURSES_EXPORT(void) _nc_copy_termtype2 (TERMTYPE2 *, const TERMTYPE2 *);
2131 extern NCURSES_EXPORT(void) _nc_export_termtype2(TERMTYPE *, const TERMTYPE2 *);
2132 #else
2133 #define _nc_copy_termtype2(dst,src) _nc_copy_termtype((dst),(src))
2134 #define _nc_export_termtype2(dst,src) /* nothing */
2135 #define _nc_free_termtype2(t) _nc_free_termtype(t)
2136 /* also... */
2137 #define _nc_read_entry2 _nc_read_entry
2138 #endif
2139
2140 #if NO_LEAKS
2141 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
2142 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
2143 extern NCURSES_EXPORT(void) _nc_codes_leaks(void);
2144 extern NCURSES_EXPORT(void) _nc_comp_captab_leaks(void);
2145 extern NCURSES_EXPORT(void) _nc_comp_error_leaks(void);
2146 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
2147 extern NCURSES_EXPORT(void) _nc_comp_userdefs_leaks(void);
2148 extern NCURSES_EXPORT(void) _nc_db_iterator_leaks(void);
2149 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
2150 extern NCURSES_EXPORT(void) _nc_names_leaks(void);
2151 extern NCURSES_EXPORT(void) _nc_tgetent_leak(TERMINAL *);
2152 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
2153 #endif
2154
2155 #if !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
2156 extern NCURSES_EXPORT(NCURSES_CH_T) _nc_render (WINDOW *, NCURSES_CH_T);
2157 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW *, const NCURSES_CH_T);
2158 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW *, int const, int const, int const, NCURSES_CH_T);
2159 #endif
2160
2161 #if USE_WIDEC_SUPPORT
2162 extern NCURSES_EXPORT(int) _nc_insert_wch(WINDOW *, const cchar_t *);
2163 #endif
2164
2165 #if USE_WIDEC_SUPPORT && !(defined(USE_TERMLIB) || defined(USE_BUILD_CC))
2166 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
2167 #endif
2168
2169 #if USE_SIZECHANGE
2170 extern NCURSES_EXPORT(void) _nc_update_screensize (SCREEN *);
2171 #endif
2172
2173 #if HAVE_RESIZETERM
2174 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW *);
2175 #else
2176 #define _nc_resize_margins(wp) /* nothing */
2177 #endif
2178
2179 #ifdef NCURSES_WGETCH_EVENTS
2180 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist *);
2181 #else
2182 #define wgetch_events(win, evl) wgetch(win)
2183 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
2184 #endif
2185
2186 /*
2187  * Wide-character macros to hide some platform-differences.
2188  */
2189 #if USE_WIDEC_SUPPORT
2190
2191 #if defined(_NC_WINDOWS) && !defined(_NC_MSC) && !defined(EXP_WIN32_DRIVER)
2192 /*
2193  * MinGW has wide-character functions, but they do not work correctly.
2194  */
2195 extern int __MINGW_NOTHROW _nc_wctomb(char *, wchar_t);
2196 #define wctomb(s,wc) _nc_wctomb(s,wc)
2197 #define wcrtomb(s,wc,n) _nc_wctomb(s,wc)
2198
2199 extern int __MINGW_NOTHROW _nc_mbtowc(wchar_t *, const char *, size_t);
2200 #define mbtowc(pwc,s,n) _nc_mbtowc(pwc,s,n)
2201
2202 extern int __MINGW_NOTHROW _nc_mblen(const char *, size_t);
2203 #define mblen(s,n) _nc_mblen(s, n)
2204
2205 #endif /* _NC_WINDOWS && !_NC_MSC */
2206
2207 #if defined(_NC_WINDOWS) || defined(_NC_MINGW)
2208 /* see wcwidth.c */
2209 NCURSES_EXPORT(int) mk_wcwidth(wchar_t);
2210 #define wcwidth(ucs) _nc_wcwidth(ucs)
2211 #endif
2212
2213 #if HAVE_MBTOWC && HAVE_MBLEN
2214 #define reset_mbytes(state) IGNORE_RC(mblen(NULL, (size_t) 0)), IGNORE_RC(mbtowc(NULL, NULL, (size_t) 0))
2215 #define count_mbytes(buffer,length,state) mblen(buffer,length)
2216 #define check_mbytes(wch,buffer,length,state) \
2217         (int) mbtowc(&(wch), buffer, length)
2218 #define state_unused
2219 #elif HAVE_MBRTOWC && HAVE_MBRLEN
2220 #define reset_mbytes(state) init_mb(state)
2221 #define count_mbytes(buffer,length,state) mbrlen(buffer,length,&(state))
2222 #define check_mbytes(wch,buffer,length,state) \
2223         (int) mbrtowc(&(wch), buffer, length, &(state))
2224 #else
2225 make an error
2226 #endif
2227
2228 #endif /* USE_WIDEC_SUPPORT */
2229
2230 /*
2231  * Not everyone has vsscanf(), but we'd like to use it for scanw().
2232  */
2233 #if !HAVE_VSSCANF
2234 extern int vsscanf(const char *str, const char *format, va_list __arg);
2235 #endif
2236
2237 /* scroll indices */
2238 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums;
2239
2240 #define USE_SETBUF_0 0
2241
2242 #define NC_OUTPUT(sp) ((sp != 0 && sp->_ofp != 0) ? sp->_ofp : stdout)
2243
2244 /*
2245  * On systems with a broken linker, define 'SP' as a function to force the
2246  * linker to pull in the data-only module with 'SP'.
2247  */
2248 #define _nc_alloc_screen_sp() typeCalloc(SCREEN, 1)
2249
2250 #if BROKEN_LINKER
2251 #define SP _nc_screen()
2252 extern NCURSES_EXPORT(SCREEN *) _nc_screen (void);
2253 extern NCURSES_EXPORT(int)      _nc_alloc_screen (void);
2254 extern NCURSES_EXPORT(void)     _nc_set_screen (SCREEN *);
2255 #define CURRENT_SCREEN          _nc_screen()
2256 #else
2257 /* current screen is private data; avoid possible linking conflicts too */
2258 extern NCURSES_EXPORT_VAR(SCREEN *) SP;
2259 #define CURRENT_SCREEN SP
2260 #define _nc_alloc_screen()      ((SP = _nc_alloc_screen_sp()) != 0)
2261 #define _nc_set_screen(sp)      SP = sp
2262 #endif
2263
2264 #if NCURSES_SP_FUNCS
2265 #define CURRENT_SCREEN_PRE      (IsPreScreen(CURRENT_SCREEN) ? CURRENT_SCREEN : new_prescr())
2266 #else
2267 #define CURRENT_SCREEN_PRE      CURRENT_SCREEN
2268 #endif
2269
2270 /*
2271  * We don't want to use the lines or columns capabilities internally, because
2272  * if the application is running multiple screens under X, it is quite possible
2273  * they could all have type xterm but have different sizes!  So...
2274  */
2275 #define screen_lines(sp)        (sp)->_lines
2276 #define screen_columns(sp)      (sp)->_columns
2277
2278 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW *, int);
2279 extern NCURSES_EXPORT(int) _nc_format_slks (NCURSES_SP_DCLx int _c);
2280
2281 /*
2282  * Some constants related to SLK's
2283  */
2284 #define MAX_SKEY_OLD       8    /* count of soft keys */
2285 #define MAX_SKEY_LEN_OLD   8    /* max length of soft key text */
2286 #define MAX_SKEY_PC       12    /* This is what most PC's have */
2287 #define MAX_SKEY_LEN_PC    5
2288
2289 /* Macro to check whether or not we use a standard format */
2290 #define SLK_STDFMT(fmt) (fmt < 3)
2291 /* Macro to determine height of label window */
2292 #define SLK_LINES(fmt)  (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
2293
2294 #define MAX_SKEY(fmt)     (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
2295 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
2296
2297 /*
2298  * Common error messages
2299  */
2300 #define MSG_NO_MEMORY "Out of memory"
2301 #define MSG_NO_INPUTS "Premature EOF"
2302
2303 extern NCURSES_EXPORT(int) _nc_set_tty_mode(TTY *);
2304 extern NCURSES_EXPORT(int) _nc_get_tty_mode(TTY *);
2305
2306 /* timed_wait flag definitions */
2307 #define TW_NONE    0
2308 #define TW_INPUT   1
2309 #define TW_MOUSE   2
2310 #define TW_ANY     (TW_INPUT | TW_MOUSE)
2311 #define TW_EVENT   4
2312
2313 #define SetSafeOutcWrapper(outc)            \
2314     SCREEN* sp = CURRENT_SCREEN;            \
2315     struct screen outc_wrapper;             \
2316     if (sp==0) {                            \
2317         sp = &outc_wrapper;                 \
2318         memset(sp,0,sizeof(struct screen)); \
2319         sp->_outch = _nc_outc_wrapper;      \
2320     }\
2321     sp->jump = outc
2322
2323 #ifdef USE_TERM_DRIVER
2324
2325 typedef struct _termInfo
2326 {
2327     bool caninit;
2328
2329     bool hascolor;
2330     bool initcolor;
2331     bool canchange;
2332
2333     int  tabsize;
2334
2335     int  maxcolors;
2336     int  maxpairs;
2337     int  nocolorvideo;
2338
2339     int  numbuttons;
2340     int  numlabels;
2341     int  labelwidth;
2342     int  labelheight;
2343
2344     const color_t* defaultPalette;
2345 } TerminalInfo;
2346
2347 typedef struct term_driver {
2348     bool   isTerminfo;
2349     const char* (*td_name)(struct DriverTCB*);
2350     bool   (*td_CanHandle)(struct DriverTCB*, const char*, int*);
2351     void   (*td_init)(struct DriverTCB*);
2352     void   (*td_release)(struct DriverTCB*);
2353     int    (*td_size)(struct DriverTCB*, int* Line, int *Cols);
2354     int    (*td_sgmode)(struct DriverTCB*, int setFlag, TTY*);
2355     chtype (*td_conattr)(struct DriverTCB*);
2356     int    (*td_hwcur)(struct DriverTCB*, int yold, int xold, int y, int x);
2357     int    (*td_mode)(struct DriverTCB*, int progFlag, int defFlag);
2358     bool   (*td_rescol)(struct DriverTCB*);
2359     bool   (*td_rescolors)(struct DriverTCB*);
2360     void   (*td_color)(struct DriverTCB*, int fore, int color, int(*)(SCREEN*, int));
2361     int    (*td_doBeepOrFlash)(struct DriverTCB*, int);
2362     void   (*td_initpair)(struct DriverTCB*, int, int, int);
2363     void   (*td_initcolor)(struct DriverTCB*, int, int, int, int);
2364     void   (*td_docolor)(struct DriverTCB*, int, int, int, int(*)(SCREEN*, int));
2365     void   (*td_initmouse)(struct DriverTCB*);
2366     int    (*td_testmouse)(struct DriverTCB*, int EVENTLIST_2nd(_nc_eventlist*));
2367     void   (*td_setfilter)(struct DriverTCB*);
2368     void   (*td_hwlabel)(struct DriverTCB*, int, char*);
2369     void   (*td_hwlabelOnOff)(struct DriverTCB*, int);
2370     int    (*td_update)(struct DriverTCB*);
2371     int    (*td_defaultcolors)(struct DriverTCB*, int, int);
2372     int    (*td_print)(struct DriverTCB*, char*, int);
2373     int    (*td_getsize)(struct DriverTCB*, int*, int*);
2374     int    (*td_setsize)(struct DriverTCB*, int, int);
2375     void   (*td_initacs)(struct DriverTCB*, chtype*, chtype*);
2376     void   (*td_scinit)(SCREEN *);
2377     void   (*td_scexit)(SCREEN *);
2378     int    (*td_twait)(struct DriverTCB*, int, int, int* EVENTLIST_2nd(_nc_eventlist*));
2379     int    (*td_read)(struct DriverTCB*, int*);
2380     int    (*td_nap)(struct DriverTCB*, int);
2381     int    (*td_kpad)(struct DriverTCB*, int);
2382     int    (*td_kyOk)(struct DriverTCB*, int, int);
2383     bool   (*td_kyExist)(struct DriverTCB*, int);
2384     int    (*td_cursorSet)(struct DriverTCB*, int);
2385 } TERM_DRIVER;
2386
2387 typedef struct DriverTCB
2388 {
2389     TERMINAL      term;   /* needs to be the first Element !!! */
2390     TERM_DRIVER*  drv;    /* The driver for that Terminal */
2391     SCREEN*       csp;    /* The screen that owns that Terminal */
2392     TerminalInfo  info;   /* Driver independent core capabilities of the Terminal */
2393     void*         prop;   /* Driver dependent property storage to be used by the Driver */
2394     long          magic;
2395 } TERMINAL_CONTROL_BLOCK;
2396
2397 #define NCDRV_MAGIC(id) (0x47110000 | (id&0xffff))
2398 #define NCDRV_TINFO      0x01
2399 #define NCDRV_WINCONSOLE 0x02
2400
2401 #define TCBOf(sp)    ((TERMINAL_CONTROL_BLOCK*)(TerminalOf(sp)))
2402 #define InfoOf(sp)   TCBOf(sp)->info
2403 #define CallDriver(sp,method)                        TCBOf(sp)->drv->method(TCBOf(sp))
2404 #define CallDriver_1(sp,method,arg1)                 TCBOf(sp)->drv->method(TCBOf(sp),arg1)
2405 #define CallDriver_2(sp,method,arg1,arg2)            TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2)
2406 #define CallDriver_3(sp,method,arg1,arg2,arg3)       TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3)
2407 #define CallDriver_4(sp,method,arg1,arg2,arg3,arg4)  TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3,arg4)
2408
2409 extern NCURSES_EXPORT_VAR(const color_t*) _nc_cga_palette;
2410 extern NCURSES_EXPORT_VAR(const color_t*) _nc_hls_palette;
2411
2412 extern NCURSES_EXPORT(int)      _nc_get_driver(TERMINAL_CONTROL_BLOCK*, const char*, int*);
2413 extern NCURSES_EXPORT(void)     _nc_get_screensize_ex(SCREEN *, TERMINAL *, int *, int *);
2414 #endif /* USE_TERM_DRIVER */
2415
2416 /*
2417  * Entrypoints which are actually provided in the terminal driver, which would
2418  * be an sp-name otherwise.
2419  */
2420 #ifdef USE_TERM_DRIVER
2421 #define TINFO_HAS_KEY           _nc_tinfo_has_key
2422 #define TINFO_DOUPDATE          _nc_tinfo_doupdate
2423 #define TINFO_MVCUR             _nc_tinfo_mvcur
2424 extern NCURSES_EXPORT(int)      TINFO_HAS_KEY(SCREEN*, int);
2425 extern NCURSES_EXPORT(int)      TINFO_DOUPDATE(SCREEN *);
2426 extern NCURSES_EXPORT(int)      TINFO_MVCUR(SCREEN*, int, int, int, int);
2427 #else
2428 #define TINFO_HAS_KEY           NCURSES_SP_NAME(has_key)
2429 #define TINFO_DOUPDATE          NCURSES_SP_NAME(doupdate)
2430 #define TINFO_MVCUR             NCURSES_SP_NAME(_nc_mvcur)
2431 #endif
2432
2433 #if defined(EXP_WIN32_DRIVER)
2434 #include <nc_win32.h>
2435 #endif
2436
2437 /*
2438  * Entrypoints using an extra parameter with the terminal driver.
2439  */
2440 #ifdef USE_TERM_DRIVER
2441 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, TERMINAL *, int *, int *);
2442 extern NCURSES_EXPORT(int)    _nc_setupterm_ex(TERMINAL **, const char *, int , int *, int);
2443 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2444         _nc_get_screensize(sp, tp, lp, cp)
2445 #define TINFO_SET_CURTERM(sp, tp) \
2446         NCURSES_SP_NAME(set_curterm)(sp, tp)
2447 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2448         _nc_setupterm_ex(tpp, name, fd, err, reuse)
2449 #else /* !USE_TERM_DRIVER */
2450 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, int *, int *);
2451 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2452         _nc_get_screensize(sp, lp, cp)
2453 #define TINFO_SET_CURTERM(sp, tp) \
2454         set_curterm(tp)
2455 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2456         _nc_setupterm(name, fd, err, reuse)
2457 #endif /* !USE_TERM_DRIVER */
2458
2459 #ifdef EXP_WIN32_DRIVER
2460 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_TINFO_DRIVER;
2461 #else
2462 #ifdef USE_TERM_DRIVER
2463 #if defined(USE_WIN32CON_DRIVER)
2464 #include <nc_mingw.h>
2465 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_WIN_DRIVER;
2466 extern NCURSES_EXPORT(int)  _nc_mingw_isatty(int fd);
2467 extern NCURSES_EXPORT(int)  _nc_mingw_isconsole(int fd);
2468 extern NCURSES_EXPORT(int) _nc_mingw_console_read(
2469     SCREEN *sp,
2470     HANDLE  fd,
2471     int *buf);
2472 extern NCURSES_EXPORT(int) _nc_mingw_testmouse(
2473     SCREEN * sp,
2474     HANDLE fd,
2475     int delay EVENTLIST_2nd(_nc_eventlist*));
2476 #else
2477 #endif
2478 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_TINFO_DRIVER;
2479 #endif /* USE_TERM_DRIVER */
2480 #endif /* EXP_WIN32_DRIVER */
2481
2482 #if defined(USE_TERM_DRIVER) && defined(EXP_WIN32_DRIVER)
2483 #define NC_ISATTY(fd) (0 != _nc_console_isatty(fd))
2484 #elif defined(USE_TERM_DRIVER) && defined(USE_WIN32CON_DRIVER)
2485 #define NC_ISATTY(fd) _nc_mingw_isatty(fd)
2486 #else
2487 #define NC_ISATTY(fd) isatty(fd)
2488 #endif
2489
2490 #ifdef USE_TERM_DRIVER
2491 #  define IsTermInfo(sp)       ((TCBOf(sp) != 0) && ((TCBOf(sp)->drv->isTerminfo)))
2492 #  define HasTInfoTerminal(sp) ((0 != TerminalOf(sp)) && IsTermInfo(sp))
2493 #  if defined(EXP_WIN32_DRIVER)
2494 #    define IsTermInfoOnConsole(sp) (IsTermInfo(sp) && _nc_console_test(TerminalOf(sp)->Filedes))
2495 #  elif defined(USE_WIN32CON_DRIVER)
2496 #    define IsTermInfoOnConsole(sp) (IsTermInfo(sp) && _nc_mingw_isconsole(TerminalOf(sp)->Filedes))
2497 #  else
2498 #    define IsTermInfoOnConsole(sp) FALSE
2499 #  endif
2500 #else
2501 #  define IsTermInfo(sp)       TRUE
2502 #  define HasTInfoTerminal(sp) (0 != TerminalOf(sp))
2503 #  if defined(EXP_WIN32_DRIVER)
2504 #    define IsTermInfoOnConsole(sp) _nc_console_test(TerminalOf(sp)->Filedes)
2505 #  else
2506 #    define IsTermInfoOnConsole(sp) FALSE
2507 #  endif
2508 #endif
2509
2510 #define IsValidTIScreen(sp)  (HasTInfoTerminal(sp))
2511
2512 /*
2513  * Exported entrypoints beyond the published API
2514  */
2515 #if NCURSES_SP_FUNCS
2516 extern NCURSES_EXPORT(WINDOW *) _nc_curscr_of(SCREEN*);
2517 extern NCURSES_EXPORT(WINDOW *) _nc_newscr_of(SCREEN*);
2518 extern NCURSES_EXPORT(WINDOW *) _nc_stdscr_of(SCREEN*);
2519 extern NCURSES_EXPORT(int)      _nc_outc_wrapper(SCREEN*,int);
2520
2521 #if USE_REENTRANT
2522 extern NCURSES_EXPORT(int)       NCURSES_SP_NAME(_nc_TABSIZE)(SCREEN*);
2523 extern NCURSES_EXPORT(char *)    NCURSES_SP_NAME(longname)(SCREEN*);
2524 #endif
2525
2526 #if NCURSES_EXT_FUNCS
2527 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tabsize)(SCREEN*, int);
2528 #endif
2529
2530 /*
2531  * We put the safe versions of various calls here as they are not published
2532  * part of the API up to now
2533  */
2534 extern NCURSES_EXPORT(TERMINAL*) NCURSES_SP_NAME(_nc_get_cur_term) (SCREEN *sp);
2535 extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(_nc_makenew) (SCREEN*, int, int, int, int, int);
2536 extern NCURSES_EXPORT(bool)     NCURSES_SP_NAME(_nc_reset_colors)(SCREEN*);
2537 extern NCURSES_EXPORT(char *)   NCURSES_SP_NAME(_nc_printf_string)(SCREEN*, const char *, va_list);
2538 extern NCURSES_EXPORT(chtype)   NCURSES_SP_NAME(_nc_acs_char)(SCREEN*,int);
2539 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_get_tty_mode)(SCREEN*,TTY*);
2540 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mcprint)(SCREEN*,char*, int);
2541 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_msec_cost)(SCREEN*, const char *, int);
2542 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mvcur)(SCREEN*, int, int, int, int);
2543 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_outch)(SCREEN*, int);
2544 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putchar)(SCREEN*, int);
2545 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp)(SCREEN*, const char *, const char*);
2546 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp_flush)(SCREEN*, const char *, const char *);
2547 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_ripoffline)(SCREEN*, int, int (*)(WINDOW *,int));
2548 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scrolln)(SCREEN*, int, int, int, int);
2549 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tty_mode)(SCREEN*, TTY*);
2550 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_setupscreen)(SCREEN**, int, int, FILE *, int, int);
2551 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tgetent)(SCREEN*,char*,const char *);
2552 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_color)(SCREEN*, int, int, int, NCURSES_SP_OUTC);
2553 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_xmc_glitch)(SCREEN*, attr_t);
2554 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_flush)(SCREEN*);
2555 extern GCC_NORETURN NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_free_and_exit)(SCREEN*, int);
2556 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_freeall)(SCREEN*);
2557 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_hash_map)(SCREEN*);
2558 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_init_acs)(SCREEN*);
2559 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_make_oldhash)(SCREEN*, int i);
2560 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_init)(SCREEN*);
2561 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_resume)(SCREEN*);
2562 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_wrap)(SCREEN*);
2563 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_init)(SCREEN*);
2564 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_resume)(SCREEN*);
2565 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_wrap)(SCREEN*);
2566 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_oldhash)(SCREEN*, int n, int top, int bot);
2567 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_optimize)(SCREEN*);
2568 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_set_buffer)(SCREEN*, FILE *, int);
2569
2570 extern NCURSES_EXPORT(void)     _nc_cookie_init(SCREEN *sp);
2571
2572 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
2573 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_linedump)(SCREEN*);
2574 #endif
2575
2576 #if USE_WIDEC_SUPPORT
2577 extern NCURSES_EXPORT(wchar_t *) NCURSES_SP_NAME(_nc_wunctrl)(SCREEN*, cchar_t *);
2578 #endif
2579
2580 #endif /* NCURSES_SP_FUNCS */
2581
2582 #if NCURSES_SP_FUNCS
2583
2584 #define safe_keyname NCURSES_SP_NAME(keyname)
2585 #define safe_unctrl  NCURSES_SP_NAME(unctrl)
2586 #define safe_ungetch NCURSES_SP_NAME(ungetch)
2587
2588 #else
2589
2590 #define safe_keyname _nc_keyname
2591 #define safe_unctrl  _nc_unctrl
2592 #define safe_ungetch _nc_ungetch
2593
2594 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_keyname (SCREEN *, int);
2595 extern NCURSES_EXPORT(int) _nc_ungetch (SCREEN *, int);
2596 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_unctrl (SCREEN *, chtype);
2597
2598 #endif
2599
2600 #ifdef EXP_XTERM_1005
2601 NCURSES_EXPORT(int) _nc_conv_to_utf8(unsigned char *, unsigned, unsigned);
2602 NCURSES_EXPORT(int) _nc_conv_to_utf32(unsigned *, const char *, unsigned);
2603 #endif
2604
2605 #ifdef __cplusplus
2606 }
2607 #endif
2608
2609 /* *INDENT-ON* */
2610
2611 #endif /* CURSES_PRIV_H */