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