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