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