]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/curses.priv.h
444ad558ba244a045f65067bd7366e4e9e271448
[ncurses.git] / ncurses / curses.priv.h
1 /****************************************************************************
2  * Copyright (c) 1998-2008,2009 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 /*
38  * $Id: curses.priv.h,v 1.436 2009/08/30 18:13:54 tom Exp $
39  *
40  *      curses.priv.h
41  *
42  *      Header file for curses library objects which are private to
43  *      the library.
44  *
45  */
46
47 #ifndef CURSES_PRIV_H
48 #define CURSES_PRIV_H 1
49
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 <stdlib.h>
65 #include <string.h>
66 #include <sys/types.h>
67
68 #if HAVE_UNISTD_H
69 #include <unistd.h>
70 #endif
71
72 #if HAVE_SYS_BSDTYPES_H
73 #include <sys/bsdtypes.h>       /* needed for ISC */
74 #endif
75
76 #if HAVE_LIMITS_H
77 # include <limits.h>
78 #elif HAVE_SYS_PARAM_H
79 # include <sys/param.h>
80 #endif
81
82 #include <assert.h>
83 #include <stdio.h>
84
85 #include <errno.h>
86
87 #ifndef PATH_MAX
88 # if defined(_POSIX_PATH_MAX)
89 #  define PATH_MAX _POSIX_PATH_MAX
90 # elif defined(MAXPATHLEN)
91 #  define PATH_MAX MAXPATHLEN
92 # else
93 #  define PATH_MAX 255  /* the Posix minimum path-size */
94 # endif
95 #endif
96
97 #if DECL_ERRNO
98 extern int errno;
99 #endif
100
101 /* Some systems have a broken 'select()', but workable 'poll()'.  Use that */
102 #if HAVE_WORKING_POLL
103 #define USE_FUNC_POLL 1
104 #if HAVE_POLL_H
105 #include <poll.h>
106 #else
107 #include <sys/poll.h>
108 #endif
109 #else
110 #define USE_FUNC_POLL 0
111 #endif
112
113 /* include signal.h before curses.h to work-around defect in glibc 2.1.3 */
114 #include <signal.h>
115
116 /* Alessandro Rubini's GPM (general-purpose mouse) */
117 #if HAVE_LIBGPM && HAVE_GPM_H
118 #define USE_GPM_SUPPORT 1
119 #else
120 #define USE_GPM_SUPPORT 0
121 #endif
122
123 /* QNX mouse support */
124 #if defined(__QNX__) && !defined(__QNXNTO__)
125 #define USE_QNX_MOUSE 1
126 #else
127 #define USE_QNX_MOUSE 0
128 #endif
129
130 /* EMX mouse support */
131 #ifdef __EMX__
132 #define USE_EMX_MOUSE 1
133 #else
134 #define USE_EMX_MOUSE 0
135 #endif
136
137 #define DEFAULT_MAXCLICK 166
138 #define EV_MAX          8       /* size of mouse circular event queue */
139
140 /*
141  * If we don't have signals to support it, don't add a sigwinch handler.
142  * In any case, resizing is an extended feature.  Use it if we've got it.
143  */
144 #if !NCURSES_EXT_FUNCS
145 #undef HAVE_SIZECHANGE
146 #define HAVE_SIZECHANGE 0
147 #endif
148
149 #if HAVE_SIZECHANGE && USE_SIGWINCH && defined(SIGWINCH)
150 #define USE_SIZECHANGE 1
151 #else
152 #define USE_SIZECHANGE 0
153 #undef USE_SIGWINCH
154 #define USE_SIGWINCH 0
155 #endif
156
157 /*
158  * If desired, one can configure this, disabling environment variables that
159  * point to custom terminfo/termcap locations.
160  */
161 #ifdef USE_ROOT_ENVIRON
162 #define use_terminfo_vars() 1
163 #else
164 #define use_terminfo_vars() _nc_env_access()
165 extern NCURSES_EXPORT(int) _nc_env_access (void);
166 #endif
167
168 /*
169  * Not all platforms have memmove; some have an equivalent bcopy.  (Some may
170  * have neither).
171  */
172 #if USE_OK_BCOPY
173 #define memmove(d,s,n) bcopy(s,d,n)
174 #elif USE_MY_MEMMOVE
175 #define memmove(d,s,n) _nc_memmove(d,s,n)
176 extern NCURSES_EXPORT(void *) _nc_memmove (void *, const void *, size_t);
177 #endif
178
179 /*
180  * Scroll hints are useless when hashmap is used
181  */
182 #if !USE_SCROLL_HINTS
183 #if !USE_HASHMAP
184 #define USE_SCROLL_HINTS 1
185 #else
186 #define USE_SCROLL_HINTS 0
187 #endif
188 #endif
189
190 #if USE_SCROLL_HINTS
191 #define if_USE_SCROLL_HINTS(stmt) stmt
192 #else
193 #define if_USE_SCROLL_HINTS(stmt) /*nothing*/
194 #endif
195
196 /*
197  * Options for terminal drivers, etc...
198  */
199 #if 0
200 #define USE_SP_RIPOFF     1
201 #define USE_SP_TERMTYPE   1
202 #define USE_SP_WINDOWLIST 1
203 #define USE_TERM_DRIVER   1
204 #endif
205
206 /*
207  * Note:  ht/cbt expansion flakes out randomly under Linux 1.1.47, but only
208  * when we're throwing control codes at the screen at high volume.  To see
209  * this, re-enable USE_HARD_TABS and run worm for a while.  Other systems
210  * probably don't want to define this either due to uncertainties about tab
211  * delays and expansion in raw mode.
212  */
213
214 #define TRIES struct tries
215 typedef TRIES {
216         TRIES    *child;            /* ptr to child.  NULL if none          */
217         TRIES    *sibling;          /* ptr to sibling.  NULL if none        */
218         unsigned char    ch;        /* character at this node               */
219         unsigned short   value;     /* code of string so far.  0 if none.   */
220 #undef TRIES
221 } TRIES;
222
223 /*
224  * Common/troublesome character definitions
225  */
226 #define StringOf(ch) {ch, 0}
227
228 #define L_BRACE '{'
229 #define R_BRACE '}'
230 #define S_QUOTE '\''
231 #define D_QUOTE '"'
232
233 #define VT_ACSC "``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~"
234
235 /*
236  * Structure for palette tables
237  */
238
239 typedef struct
240 {
241     short red, green, blue;     /* what color_content() returns */
242     short r, g, b;              /* params to init_color() */
243     int init;                   /* true if we called init_color() */
244 }
245 color_t;
246
247 #define MAXCOLUMNS    135
248 #define MAXLINES      66
249 #define FIFO_SIZE     MAXCOLUMNS+2  /* for nocbreak mode input */
250
251 #define ACS_LEN       128
252
253 #define WINDOWLIST struct _win_list
254
255 #if USE_WIDEC_SUPPORT
256 #define _nc_bkgd    _bkgrnd
257 #else
258 #undef _XOPEN_SOURCE_EXTENDED
259 #define _nc_bkgd    _bkgd
260 #define wgetbkgrnd(win, wch)    *wch = win->_bkgd
261 #define wbkgrnd     wbkgd
262 #endif
263
264 #undef NCURSES_OPAQUE
265 #define NCURSES_INTERNALS 1
266 #define NCURSES_OPAQUE 0
267
268 #include <curses.h>     /* we'll use -Ipath directive to get the right one! */
269
270 /*
271  * If curses.h did not expose the SCREEN-functions, then we do not need the
272  * parameter in the corresponding unextended functions.
273  */
274 #if NCURSES_SP_FUNCS
275 #define SP_PARM         sp      /* use parameter */
276 #define NCURSES_SP_ARG          SP_PARM
277 #define NCURSES_SP_DCL  SCREEN *NCURSES_SP_ARG
278 #define NCURSES_SP_DCL0 NCURSES_SP_DCL
279 #define NCURSES_SP_ARGx         NCURSES_SP_ARG,
280 #define NCURSES_SP_DCLx SCREEN *NCURSES_SP_ARGx
281 #else
282 #define SP_PARM         SP      /* use global variable */
283 #define NCURSES_SP_ARG
284 #define NCURSES_SP_DCL
285 #define NCURSES_SP_DCL0 void
286 #define NCURSES_SP_ARGx
287 #define NCURSES_SP_DCLx
288 #endif
289
290 #include <nc_panel.h>
291
292 #define IsPreScreen(sp)      (((sp) != 0) && sp->_prescreen)
293 #define HasTerminal(sp)      (((sp) != 0) && (0 != ((sp)->_term)))
294 #define IsValidScreen(sp)    (HasTerminal(sp) && !IsPreScreen(sp))
295
296 #if BROKEN_LINKER || USE_REENTRANT
297 #define CurTerm              _nc_prescreen._cur_term
298 #else
299 #define CurTerm              cur_term
300 #endif
301
302 #if NCURSES_SP_FUNCS
303 #define TerminalOf(sp)       ((sp) ? ((sp)->_term ? (sp)->_term : CurTerm) : CurTerm)
304 #else
305 #define TerminalOf(sp)       CurTerm
306 #endif
307
308 #include <term.h>
309
310 /*
311  * Reduce dependency on cur_term global by using terminfo data from SCREEN's
312  * pointer to this data.
313  */
314 #ifdef USE_SP_TERMTYPE
315 #undef CUR
316 #endif
317
318 #define SP_TERMTYPE TerminalOf(sp)->type.
319
320 #include <term_entry.h>
321
322 #include <nc_tparm.h>
323
324 #if NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT
325 #define if_EXT_COLORS(stmt)     stmt
326 #define NetPair(value,p)        (value).ext_color = (p), \
327                                 AttrOf(value) &= ALL_BUT_COLOR, \
328                                 AttrOf(value) |= (A_COLOR & COLOR_PAIR((p > 255) ? 255 : p))
329 #define SetPair(value,p)        (value).ext_color = (p)
330 #define GetPair(value)          (value).ext_color
331 #define unColor(n)              (AttrOf(n) & ALL_BUT_COLOR)
332 #define GET_WINDOW_PAIR(w)      (w)->_color
333 #define SET_WINDOW_PAIR(w,p)    (w)->_color = (p)
334 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b) && GetPair(a) == GetPair(b))
335
336 #if NCURSES_SP_FUNCS
337 #define VIDATTR(sp,attr,pair)   NCURSES_SP_NAME(vid_attr)(sp, attr, pair, 0)
338 #else
339 #define VIDATTR(sp,attr,pair)   vid_attr(attr, pair, 0)
340 #endif
341
342 #else /* !(NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT) */
343
344 #define if_EXT_COLORS(stmt)     /* nothing */
345 #define SetPair(value,p)        RemAttr(value, A_COLOR), \
346                                 SetAttr(value, AttrOf(value) | (A_COLOR & COLOR_PAIR(p)))
347 #define GetPair(value)          PAIR_NUMBER(AttrOf(value))
348 #define unColor(n)              (AttrOf(n) & ALL_BUT_COLOR)
349 #define GET_WINDOW_PAIR(w)      PAIR_NUMBER(WINDOW_ATTRS(w))
350 #define SET_WINDOW_PAIR(w,p)    WINDOW_ATTRS(w) &= ALL_BUT_COLOR, \
351                                 WINDOW_ATTRS(w) |= (A_COLOR & COLOR_PAIR(p))
352 #define SameAttrOf(a,b)         (AttrOf(a) == AttrOf(b))
353
354 #if NCURSES_SP_FUNCS
355 #define VIDATTR(sp,attr,pair)   NCURSES_SP_NAME(vidattr)(sp, attr)
356 #else
357 #define VIDATTR(sp,attr,pair)   vidattr(attr)
358 #endif
359
360 #endif /* NCURSES_EXT_COLORS && USE_WIDEC_SUPPORT */
361
362 #if NCURSES_NO_PADDING
363 #define GetNoPadding(sp)        ((sp) ? (sp)->_no_padding : _nc_prescreen._no_padding)
364 #define SetNoPadding(sp)        _nc_set_no_padding(sp)
365 extern NCURSES_EXPORT(void)     _nc_set_no_padding(SCREEN *);
366 #else
367 #define GetNoPadding(sp)        FALSE
368 #define SetNoPadding(sp)        /*nothing*/
369 #endif
370
371 #define WINDOW_ATTRS(w)         ((w)->_attrs)
372
373 #define SCREEN_ATTRS(s)         (*((s)->_current_attr))
374 #define GET_SCREEN_PAIR(s)      GetPair(SCREEN_ATTRS(s))
375 #define SET_SCREEN_PAIR(s,p)    SetPair(SCREEN_ATTRS(s), p)
376
377 #if USE_REENTRANT || NCURSES_SP_FUNCS
378 NCURSES_EXPORT(int *)        _nc_ptr_Lines (SCREEN *);
379 NCURSES_EXPORT(int *)        _nc_ptr_Cols (SCREEN *);
380 NCURSES_EXPORT(int *)        _nc_ptr_Tabsize (SCREEN *);
381 NCURSES_EXPORT(int *)        _nc_ptr_Escdelay (SCREEN *);
382 #endif
383
384 #if USE_REENTRANT
385
386 #define ptrLines(sp)         (sp ? &(sp->_LINES) : &(_nc_prescreen._LINES))
387 #define ptrCols(sp)          (sp ? &(sp->_COLS) : &(_nc_prescreen._COLS))
388 #define ptrTabsize(sp)       (sp ? &(sp->_TABSIZE) : &(_nc_prescreen._TABSIZE))
389 #define ptrEscdelay(sp)      (sp ? &(sp->_ESCDELAY) : &(_nc_prescreen._ESCDELAY))
390
391 #define SET_LINES(value)     *_nc_ptr_Lines(SP_PARM) = value
392 #define SET_COLS(value)      *_nc_ptr_Cols(SP_PARM) = value
393 #define SET_TABSIZE(value)   *_nc_ptr_Tabsize(SP_PARM) = value
394 #define SET_ESCDELAY(value)  *_nc_ptr_Escdelay(SP_PARM) = value
395
396 #else
397
398 #define ptrLines(sp)         &LINES
399 #define ptrCols(sp)          &COLS
400 #define ptrTabsize(sp)       &TABSIZE
401 #define ptrEscdelay(sp)      &ESCDELAY
402
403 #define SET_LINES(value)     LINES = value
404 #define SET_COLS(value)      COLS = value
405 #define SET_TABSIZE(value)   TABSIZE = value
406 #define SET_ESCDELAY(value)  ESCDELAY = value
407
408 #endif
409
410 #define TR_MUTEX(data) _tracef("%s@%d: me:%08lX COUNT:%2u/%2d/%6d/%2d/%s%9u: " #data, \
411             __FILE__, __LINE__, \
412             (unsigned long) (pthread_self()), \
413             data.__data.__lock, \
414             data.__data.__count, \
415             data.__data.__owner, \
416             data.__data.__kind, \
417             (data.__data.__nusers > 5) ? " OOPS " : "", \
418             data.__data.__nusers)
419 #define TR_GLOBAL_MUTEX(name) TR_MUTEX(_nc_globals.mutex_##name)
420
421 #ifdef USE_PTHREADS
422
423 #if USE_REENTRANT
424 #include <pthread.h>
425 extern NCURSES_EXPORT(void) _nc_init_pthreads(void);
426 extern NCURSES_EXPORT(void) _nc_mutex_init(pthread_mutex_t *);
427 extern NCURSES_EXPORT(int) _nc_mutex_lock(pthread_mutex_t *);
428 extern NCURSES_EXPORT(int) _nc_mutex_trylock(pthread_mutex_t *);
429 extern NCURSES_EXPORT(int) _nc_mutex_unlock(pthread_mutex_t *);
430 #define _nc_lock_global(name)   _nc_mutex_lock(&_nc_globals.mutex_##name)
431 #define _nc_try_global(name)    _nc_mutex_trylock(&_nc_globals.mutex_##name)
432 #define _nc_unlock_global(name) _nc_mutex_unlock(&_nc_globals.mutex_##name)
433
434 #else
435 #error POSIX threads requires --enable-reentrant option
436 #endif
437
438 #if USE_WEAK_SYMBOLS
439 #if defined(__GNUC__)
440 #  if defined __USE_ISOC99
441 #    define _cat_pragma(exp)    _Pragma(#exp)
442 #    define _weak_pragma(exp)   _cat_pragma(weak name)
443 #  else
444 #    define _weak_pragma(exp)
445 #  endif
446 #  define _declare(name)        __extension__ extern __typeof__(name) name
447 #  define weak_symbol(name)     _weak_pragma(name) _declare(name) __attribute__((weak))
448 #endif
449 #endif
450
451 #ifdef USE_PTHREADS
452 #  if USE_WEAK_SYMBOLS
453 weak_symbol(pthread_sigmask);
454 weak_symbol(pthread_self);
455 weak_symbol(pthread_equal);
456 weak_symbol(pthread_mutex_init);
457 weak_symbol(pthread_mutex_lock);
458 weak_symbol(pthread_mutex_unlock);
459 weak_symbol(pthread_mutex_trylock);
460 weak_symbol(pthread_mutexattr_settype);
461 weak_symbol(pthread_mutexattr_init);
462 extern NCURSES_EXPORT(int) _nc_sigprocmask(int, const sigset_t *, sigset_t *);
463 #    undef  sigprocmask
464 #    define sigprocmask _nc_sigprocmask
465 #  endif
466 #endif
467
468 #if HAVE_NANOSLEEP
469 #undef HAVE_NANOSLEEP
470 #define HAVE_NANOSLEEP 0        /* nanosleep suspends all threads */
471 #endif
472
473 #else /* !USE_PTHREADS */
474
475 #define _nc_init_pthreads()     /* nothing */
476 #define _nc_mutex_init(obj)     /* nothing */
477
478 #define _nc_lock_global(name)   /* nothing */
479 #define _nc_try_global(name)    0
480 #define _nc_unlock_global(name) /* nothing */
481
482 #endif /* USE_PTHREADS */
483
484 /*
485  * When using sp-funcs, locks are targeted to SCREEN-level granularity.
486  * So the locking is done in the non-sp-func (which calls the sp-func) rather
487  * than in the sp-func itself.
488  *
489  * Use the _nc_nonsp_XXX functions in the function using "NCURSES_SP_NAME()".
490  * Use the _nc_sp_XXX functions in the function using "#if NCURSES_SP_FUNCS".
491  */
492 #if NCURSES_SP_FUNCS
493
494 #define _nc_nonsp_lock_global(name)     /* nothing */
495 #define _nc_nonsp_try_global(name)    0
496 #define _nc_nonsp_unlock_global(name)   /* nothing */
497
498 #define _nc_sp_lock_global(name)        _nc_lock_global(name)
499 #define _nc_sp_try_global(name)         _nc_try_global(name)
500 #define _nc_sp_unlock_global(name)      _nc_unlock_global(name)
501
502 #else
503
504 #define _nc_nonsp_lock_global(name)     _nc_lock_global(name)
505 #define _nc_nonsp_try_global(name)      _nc_try_global(name)
506 #define _nc_nonsp_unlock_global(name)   _nc_unlock_global(name)
507
508 #define _nc_sp_lock_global(name)        /* nothing */
509 #define _nc_sp_try_global(name)    0
510 #define _nc_sp_unlock_global(name)      /* nothing */
511
512 #endif
513
514 #if HAVE_GETTIMEOFDAY
515 # define PRECISE_GETTIME 1
516 # define TimeType struct timeval
517 #else
518 # define PRECISE_GETTIME 0
519 # define TimeType time_t
520 #endif
521
522 /*
523  * Definitions for color pairs
524  */
525 typedef unsigned colorpair_t;   /* type big enough to store PAIR_OF() */
526 #define C_SHIFT 9               /* we need more bits than there are colors */
527 #define C_MASK                  ((1 << C_SHIFT) - 1)
528 #define PAIR_OF(fg, bg)         ((((fg) & C_MASK) << C_SHIFT) | ((bg) & C_MASK))
529 #define FORE_OF(c)              (((c) >> C_SHIFT) & C_MASK)
530 #define BACK_OF(c)              ((c) & C_MASK)
531 #define isDefaultColor(c)       ((c) >= COLOR_DEFAULT || (c) < 0)
532
533 #define COLOR_DEFAULT           C_MASK
534
535 #if defined(USE_TERMLIB) && !defined(NEED_NCURSES_CH_T)
536
537 #undef NCURSES_CH_T             /* this is not a termlib feature */
538 #define NCURSES_CH_T void       /* ...but we need a pointer in SCREEN */
539
540 #endif  /* USE_TERMLIB */
541
542 #ifndef USE_TERMLIB
543 struct ldat
544 {
545         NCURSES_CH_T    *text;          /* text of the line */
546         NCURSES_SIZE_T  firstchar;      /* first changed character in the line */
547         NCURSES_SIZE_T  lastchar;       /* last changed character in the line */
548         NCURSES_SIZE_T  oldindex;       /* index of the line at last update */
549 };
550 #endif  /* USE_TERMLIB */
551
552 typedef enum {
553         M_XTERM = -1            /* use xterm's mouse tracking? */
554         ,M_NONE = 0             /* no mouse device */
555 #if USE_GPM_SUPPORT
556         ,M_GPM                  /* use GPM */
557 #endif
558 #if USE_SYSMOUSE
559         ,M_SYSMOUSE             /* FreeBSD sysmouse on console */
560 #endif
561 } MouseType;
562
563 /*
564  * Structures for scrolling.
565  */
566
567 typedef struct {
568         unsigned long hashval;
569         int oldcount, newcount;
570         int oldindex, newindex;
571 } HASHMAP;
572
573 /*
574  * Structures for soft labels.
575  */
576
577 struct _SLK;
578
579 #ifndef USE_TERMLIB
580
581 typedef struct
582 {
583         char *ent_text;         /* text for the label */
584         char *form_text;        /* formatted text (left/center/...) */
585         int ent_x;              /* x coordinate of this field */
586         char dirty;             /* this label has changed */
587         char visible;           /* field is visible */
588 } slk_ent;
589
590 typedef struct _SLK {
591         bool    dirty;          /* all labels have changed */
592         bool    hidden;         /* soft labels are hidden */
593         WINDOW  *win;
594         slk_ent *ent;
595         short   maxlab;         /* number of available labels */
596         short   labcnt;         /* number of allocated labels */
597         short   maxlen;         /* length of labels */
598         NCURSES_CH_T attr;      /* soft label attribute */
599 } SLK;
600
601 #endif  /* USE_TERMLIB */
602
603 typedef struct {
604         WINDOW *win;            /* the window used in the hook      */
605         int     line;           /* lines to take, < 0 => from bottom*/
606         int     (*hook)(WINDOW *, int); /* callback for user        */
607 } ripoff_t;
608
609 #if USE_GPM_SUPPORT
610 #undef buttons                  /* term.h defines this, and gpm uses it! */
611 #include <gpm.h>
612
613 #ifdef HAVE_LIBDL
614 /* link dynamically to GPM */
615 typedef int *TYPE_gpm_fd;
616 typedef int (*TYPE_Gpm_Open) (Gpm_Connect *, int);
617 typedef int (*TYPE_Gpm_Close) (void);
618 typedef int (*TYPE_Gpm_GetEvent) (Gpm_Event *);
619
620 #define my_gpm_fd       SP_PARM->_mouse_gpm_fd
621 #define my_Gpm_Open     SP_PARM->_mouse_Gpm_Open
622 #define my_Gpm_Close    SP_PARM->_mouse_Gpm_Close
623 #define my_Gpm_GetEvent SP_PARM->_mouse_Gpm_GetEvent
624 #else
625 /* link statically to GPM */
626 #define my_gpm_fd       &gpm_fd
627 #define my_Gpm_Open     Gpm_Open
628 #define my_Gpm_Close    Gpm_Close
629 #define my_Gpm_GetEvent Gpm_GetEvent
630 #endif /* HAVE_LIBDL */
631 #endif /* USE_GPM_SUPPORT */
632
633 typedef struct {
634     long sequence;
635     bool last_used;
636     char *fix_sgr0;             /* this holds the filtered sgr0 string */
637     char *last_bufp;            /* help with fix_sgr0 leak */
638     TERMINAL *last_term;
639 } TGETENT_CACHE;
640
641 #define TGETENT_MAX 4
642
643 /*
644  * State of tparm().
645  */
646 #define STACKSIZE 20
647
648 typedef struct {
649         union {
650                 int     num;
651                 char    *str;
652         } data;
653         bool num_type;
654 } STACK_FRAME;
655
656 #define NUM_VARS 26
657
658 typedef struct {
659 #ifdef TRACE
660         const char      *tname;
661 #endif
662         const char      *tparam_base;
663
664         STACK_FRAME     stack[STACKSIZE];
665         int             stack_ptr;
666
667         char            *out_buff;
668         size_t          out_size;
669         size_t          out_used;
670
671         char            *fmt_buff;
672         size_t          fmt_size;
673
674         int             dynamic_var[NUM_VARS];
675         int             static_vars[NUM_VARS];
676 } TPARM_STATE;
677
678 typedef struct {
679     char *text;
680     size_t size;
681 } TRACEBUF;
682
683 /*
684  * The filesystem database normally uses a single-letter for the lower level
685  * of directories.  Use a hexadecimal code for filesystems which do not
686  * preserve mixed-case names.
687  */
688 #if MIXEDCASE_FILENAMES
689 #define LEAF_FMT "%c"
690 #else
691 #define LEAF_FMT "%02x"
692 #endif
693
694 /*
695  * TRACEMSE_FMT is no longer than 80 columns, there are 5 numbers that
696  * could at most have 10 digits, and the mask contains no more than 32 bits
697  * with each bit representing less than 15 characters.  Usually the whole
698  * string is less than 80 columns, but this buffer size is an absolute
699  * limit.
700  */
701 #define TRACEMSE_MAX    (80 + (5 * 10) + (32 * 15))
702 #define TRACEMSE_FMT    "id %2d  at (%2d, %2d, %2d) state %4lx = {" /* } */
703
704 /*
705  * Global data which is not specific to a screen.
706  */
707 typedef struct {
708         SIG_ATOMIC_T    have_sigwinch;
709         SIG_ATOMIC_T    cleanup_nested;
710
711         bool            init_signals;
712         bool            init_screen;
713
714         const char      *comp_sourcename;
715         char            *comp_termtype;
716
717         bool            have_tic_directory;
718         bool            keep_tic_directory;
719         const char      *tic_directory;
720
721         char            *dbi_list;
722         int             dbi_size;
723
724         char            *first_name;
725         char            **keyname_table;
726
727         int             slk_format;
728
729         char            *safeprint_buf;
730         size_t          safeprint_used;
731
732         TGETENT_CACHE   tgetent_cache[TGETENT_MAX];
733         int             tgetent_index;
734         long            tgetent_sequence;
735
736 #ifndef USE_SP_WINDOWLIST
737         WINDOWLIST      *_nc_windowlist;
738 #define WindowList(sp)  _nc_globals._nc_windowlist
739 #endif
740
741 #if USE_HOME_TERMINFO
742         char            *home_terminfo;
743 #endif
744
745 #if !USE_SAFE_SPRINTF
746         int             safeprint_cols;
747         int             safeprint_rows;
748 #endif
749
750 #ifdef TRACE
751         bool            init_trace;
752         char            trace_fname[PATH_MAX];
753         int             trace_level;
754         FILE            *trace_fp;
755
756         char            *tracearg_buf;
757         size_t          tracearg_used;
758
759         TRACEBUF        *tracebuf_ptr;
760         size_t          tracebuf_used;
761
762         char            tracechr_buf[40];
763
764         char            *tracedmp_buf;
765         size_t          tracedmp_used;
766
767         unsigned char   *tracetry_buf;
768         size_t          tracetry_used;
769
770         char            traceatr_color_buf[2][80];
771         int             traceatr_color_sel;
772         int             traceatr_color_last;
773 #if !defined(USE_PTHREADS) && USE_REENTRANT
774         int             nested_tracef;
775 #endif
776 #endif  /* TRACE */
777
778 #ifdef USE_PTHREADS
779         pthread_mutex_t mutex_curses;
780         pthread_mutex_t mutex_tst_tracef;
781         pthread_mutex_t mutex_tracef;
782         int             nested_tracef;
783         int             use_pthreads;
784 #define _nc_use_pthreads        _nc_globals.use_pthreads
785 #endif
786 } NCURSES_GLOBALS;
787
788 extern NCURSES_EXPORT_VAR(NCURSES_GLOBALS) _nc_globals;
789
790 #define N_RIPS 5
791
792 /*
793  * Global data which can be swept up into a SCREEN when one is created.
794  * It may be modified before the next SCREEN is created.
795  */
796 typedef struct {
797         bool            use_env;
798         bool            filter_mode;
799         attr_t          previous_attr;
800 #ifndef USE_SP_RIPOFF
801         ripoff_t        rippedoff[N_RIPS];
802         ripoff_t        *rsp;
803 #endif
804         TPARM_STATE     tparm_state;
805         TTY             *saved_tty;     /* savetty/resetty information      */
806 #if NCURSES_NO_PADDING
807         bool            _no_padding;    /* flag to set if padding disabled  */
808 #endif
809 #if BROKEN_LINKER || USE_REENTRANT
810         chtype          *real_acs_map;
811         int             _LINES;
812         int             _COLS;
813         int             _TABSIZE;
814         int             _ESCDELAY;
815         TERMINAL        *_cur_term;
816 #ifdef TRACE
817         long            _outchars;
818         const char      *_tputs_trace;
819 #endif
820 #endif
821 } NCURSES_PRESCREEN;
822
823 /*
824  * Use screen-specific ripoff data (for softkeys) rather than global.
825  */
826 #ifdef USE_SP_RIPOFF
827 #define safe_ripoff_sp     (sp)->rsp
828 #define safe_ripoff_stack  (sp)->rippedoff
829 #else
830 #define safe_ripoff_sp     _nc_prescreen.rsp
831 #define safe_ripoff_stack  _nc_prescreen.rippedoff
832 #endif
833
834 extern NCURSES_EXPORT_VAR(NCURSES_PRESCREEN) _nc_prescreen;
835
836 /*
837  * The SCREEN structure.
838  */
839
840 struct screen {
841         int             _ifd;           /* input file ptr for screen        */
842         FILE            *_ofp;          /* output file ptr for screen       */
843         char            *_setbuf;       /* buffered I/O for output          */
844         bool            _filtered;      /* filter() was called              */
845         bool            _buffered;      /* setvbuf uses _setbuf data        */
846         bool            _prescreen;     /* is in prescreen phase            */
847         bool            _use_env;       /* LINES & COLS from environment?   */
848         int             _checkfd;       /* filedesc for typeahead check     */
849         TERMINAL        *_term;         /* terminal type information        */
850         TTY             _saved_tty;     /* savetty/resetty information      */
851         NCURSES_SIZE_T  _lines;         /* screen lines                     */
852         NCURSES_SIZE_T  _columns;       /* screen columns                   */
853
854         NCURSES_SIZE_T  _lines_avail;   /* lines available for stdscr       */
855         NCURSES_SIZE_T  _topstolen;     /* lines stolen from top            */
856
857         WINDOW          *_curscr;       /* current screen                   */
858         WINDOW          *_newscr;       /* virtual screen to be updated to  */
859         WINDOW          *_stdscr;       /* screen's full-window context     */
860
861 #define CurScreen(sp)  (sp)->_curscr
862 #define NewScreen(sp)  (sp)->_newscr
863 #define StdScreen(sp)  (sp)->_stdscr
864
865         TRIES           *_keytry;       /* "Try" for use with keypad mode   */
866         TRIES           *_key_ok;       /* Disabled keys via keyok(,FALSE)  */
867         bool            _tried;         /* keypad mode was initialized      */
868         bool            _keypad_on;     /* keypad mode is currently on      */
869
870         bool            _called_wgetch; /* check for recursion in wgetch()  */
871         int             _fifo[FIFO_SIZE];       /* input push-back buffer   */
872         short           _fifohead,      /* head of fifo queue               */
873                         _fifotail,      /* tail of fifo queue               */
874                         _fifopeek,      /* where to peek for next char      */
875                         _fifohold;      /* set if breakout marked           */
876
877         int             _endwin;        /* are we out of window mode?       */
878         NCURSES_CH_T    *_current_attr; /* holds current attributes set     */
879         int             _coloron;       /* is color enabled?                */
880         int             _color_defs;    /* are colors modified              */
881         int             _cursor;        /* visibility of the cursor         */
882         int             _cursrow;       /* physical cursor row              */
883         int             _curscol;       /* physical cursor column           */
884         bool            _notty;         /* true if we cannot switch non-tty */
885         int             _nl;            /* True if NL -> CR/NL is on        */
886         int             _raw;           /* True if in raw mode              */
887         int             _cbreak;        /* 1 if in cbreak mode              */
888                                         /* > 1 if in halfdelay mode         */
889         int             _echo;          /* True if echo on                  */
890         int             _use_meta;      /* use the meta key?                */
891         struct _SLK     *_slk;          /* ptr to soft key struct / NULL    */
892         int             slk_format;     /* selected format for this screen  */
893         /* cursor movement costs; units are 10ths of milliseconds */
894 #if NCURSES_NO_PADDING
895         bool            _no_padding;    /* flag to set if padding disabled  */
896 #endif
897         int             _char_padding;  /* cost of character put            */
898         int             _cr_cost;       /* cost of (carriage_return)        */
899         int             _cup_cost;      /* cost of (cursor_address)         */
900         int             _home_cost;     /* cost of (cursor_home)            */
901         int             _ll_cost;       /* cost of (cursor_to_ll)           */
902 #if USE_HARD_TABS
903         int             _ht_cost;       /* cost of (tab)                    */
904         int             _cbt_cost;      /* cost of (backtab)                */
905 #endif /* USE_HARD_TABS */
906         int             _cub1_cost;     /* cost of (cursor_left)            */
907         int             _cuf1_cost;     /* cost of (cursor_right)           */
908         int             _cud1_cost;     /* cost of (cursor_down)            */
909         int             _cuu1_cost;     /* cost of (cursor_up)              */
910         int             _cub_cost;      /* cost of (parm_cursor_left)       */
911         int             _cuf_cost;      /* cost of (parm_cursor_right)      */
912         int             _cud_cost;      /* cost of (parm_cursor_down)       */
913         int             _cuu_cost;      /* cost of (parm_cursor_up)         */
914         int             _hpa_cost;      /* cost of (column_address)         */
915         int             _vpa_cost;      /* cost of (row_address)            */
916         /* used in tty_update.c, must be chars */
917         int             _ed_cost;       /* cost of (clr_eos)                */
918         int             _el_cost;       /* cost of (clr_eol)                */
919         int             _el1_cost;      /* cost of (clr_bol)                */
920         int             _dch1_cost;     /* cost of (delete_character)       */
921         int             _ich1_cost;     /* cost of (insert_character)       */
922         int             _dch_cost;      /* cost of (parm_dch)               */
923         int             _ich_cost;      /* cost of (parm_ich)               */
924         int             _ech_cost;      /* cost of (erase_chars)            */
925         int             _rep_cost;      /* cost of (repeat_char)            */
926         int             _hpa_ch_cost;   /* cost of (column_address)         */
927         int             _cup_ch_cost;   /* cost of (cursor_address)         */
928         int             _cuf_ch_cost;   /* cost of (parm_cursor_right)      */
929         int             _inline_cost;   /* cost of inline-move              */
930         int             _smir_cost;     /* cost of (enter_insert_mode)      */
931         int             _rmir_cost;     /* cost of (exit_insert_mode)       */
932         int             _ip_cost;       /* cost of (insert_padding)         */
933         /* used in lib_mvcur.c */
934         char *          _address_cursor;
935         /* used in tty_update.c */
936         int             _scrolling;     /* 1 if terminal's smart enough to  */
937
938         /* used in lib_color.c */
939         color_t         *_color_table;  /* screen's color palette            */
940         int             _color_count;   /* count of colors in palette        */
941         colorpair_t     *_color_pairs;  /* screen's color pair list          */
942         int             _pair_count;    /* count of color pairs              */
943         int             _pair_limit;    /* actual limit of color-pairs       */
944 #if NCURSES_EXT_FUNCS
945         bool            _default_color; /* use default colors                */
946         bool            _has_sgr_39_49; /* has ECMA default color support    */
947         int             _default_fg;    /* assumed default foreground        */
948         int             _default_bg;    /* assumed default background        */
949         int             _default_pairs; /* count pairs using default color   */
950 #endif
951         chtype          _ok_attributes; /* valid attributes for terminal     */
952         chtype          _xmc_suppress;  /* attributes to suppress if xmc     */
953         chtype          _xmc_triggers;  /* attributes to process if xmc      */
954         chtype *        _acs_map;       /* the real alternate-charset map    */
955         bool *          _screen_acs_map;
956
957
958         /* used in lib_vidattr.c */
959         bool            _use_rmso;      /* true if we may use 'rmso'         */
960         bool            _use_rmul;      /* true if we may use 'rmul'         */
961
962         /*
963          * These data correspond to the state of the idcok() and idlok()
964          * functions.  A caveat is in order here:  the XSI and SVr4
965          * documentation specify that these functions apply to the window which
966          * is given as an argument.  However, ncurses implements this logic
967          * only for the newscr/curscr update process, _not_ per-window.
968          */
969         bool            _nc_sp_idlok;
970         bool            _nc_sp_idcok;
971
972 #define _nc_idlok SP_PARM->_nc_sp_idlok
973 #define _nc_idcok SP_PARM->_nc_sp_idcok
974
975         /*
976          * These are the data that support the mouse interface.
977          */
978         bool            _mouse_initialized;
979         MouseType       _mouse_type;
980         int             _maxclick;
981         bool            (*_mouse_event) (SCREEN *);
982         bool            (*_mouse_inline)(SCREEN *);
983         bool            (*_mouse_parse) (SCREEN *, int);
984         void            (*_mouse_resume)(SCREEN *);
985         void            (*_mouse_wrap)  (SCREEN *);
986         int             _mouse_fd;      /* file-descriptor, if any */
987         bool            _mouse_active;  /* true if initialized */
988         mmask_t         _mouse_mask;
989         NCURSES_CONST char *_mouse_xtermcap; /* string to enable/disable mouse */
990         MEVENT          _mouse_events[EV_MAX];  /* hold the last mouse event seen */
991         MEVENT          *_mouse_eventp; /* next free slot in event queue */
992
993 #if USE_GPM_SUPPORT
994         bool            _mouse_gpm_loaded;
995         bool            _mouse_gpm_found;
996 #ifdef HAVE_LIBDL
997         void            *_dlopen_gpm;
998         TYPE_gpm_fd     _mouse_gpm_fd;
999         TYPE_Gpm_Open   _mouse_Gpm_Open;
1000         TYPE_Gpm_Close  _mouse_Gpm_Close;
1001         TYPE_Gpm_GetEvent _mouse_Gpm_GetEvent;
1002 #endif
1003         Gpm_Connect     _mouse_gpm_connect;
1004 #endif /* USE_GPM_SUPPORT */
1005
1006 #if USE_EMX_MOUSE
1007         int             _emxmouse_wfd;
1008         int             _emxmouse_thread;
1009         int             _emxmouse_activated;
1010         char            _emxmouse_buttons[4];
1011 #endif
1012
1013 #if USE_SYSMOUSE
1014         MEVENT          _sysmouse_fifo[FIFO_SIZE];
1015         int             _sysmouse_head;
1016         int             _sysmouse_tail;
1017         int             _sysmouse_char_width;   /* character width */
1018         int             _sysmouse_char_height;  /* character height */
1019         int             _sysmouse_old_buttons;
1020         int             _sysmouse_new_buttons;
1021 #endif
1022
1023         /*
1024          * This supports automatic resizing
1025          */
1026 #if USE_SIZECHANGE
1027         int             (*_resize)(NCURSES_SP_DCLx int y, int x);
1028 #endif
1029
1030         /*
1031          * These are data that support the proper handling of the panel stack on an
1032          * per screen basis.
1033          */
1034         struct panelhook _panelHook;
1035
1036         bool            _sig_winch;
1037         SCREEN          *_next_screen;
1038
1039         /* hashes for old and new lines */
1040         unsigned long   *oldhash, *newhash;
1041         HASHMAP         *hashtab;
1042         int             hashtab_len;
1043         int             *_oldnum_list;
1044         int             _oldnum_size;
1045
1046         bool            _cleanup;       /* cleanup after int/quit signal */
1047         NCURSES_SP_OUTC _outch;         /* output handler if not putc */
1048
1049         int             _legacy_coding; /* see use_legacy_coding() */
1050
1051 #if USE_REENTRANT
1052         char            _ttytype[NAMESIZE];
1053         int             _ESCDELAY;
1054         int             _TABSIZE;
1055         int             _LINES;
1056         int             _COLS;
1057 #ifdef TRACE
1058         long            _outchars;
1059         const char      *_tputs_trace;
1060 #endif
1061 #endif
1062
1063 #ifdef TRACE
1064         char            tracechr_buf[40];
1065         char            tracemse_buf[TRACEMSE_MAX];
1066 #endif
1067 #ifdef USE_SP_WINDOWLIST
1068         WINDOWLIST*     _windowlist;
1069 #define WindowList(sp)  (sp)->_windowlist
1070 #endif
1071         NCURSES_OUTC    jump;
1072
1073         ripoff_t        rippedoff[N_RIPS];
1074         ripoff_t        *rsp;
1075
1076         /*
1077          * ncurses/ncursesw are the same up to this point.
1078          */
1079 #if USE_WIDEC_SUPPORT
1080         /* recent versions of 'screen' have partially-working support for
1081          * UTF-8, but do not permit ACS at the same time (see tty_update.c).
1082          */
1083         bool            _screen_acs_fix;
1084 #endif
1085 };
1086
1087 extern NCURSES_EXPORT_VAR(SCREEN *) _nc_screen_chain;
1088 extern NCURSES_EXPORT_VAR(SIG_ATOMIC_T) _nc_have_sigwinch;
1089
1090         WINDOWLIST {
1091         WINDOW  win;            /* first, so WINDOW_EXT() works */
1092         WINDOWLIST *next;
1093         SCREEN *screen;         /* screen containing the window */
1094 #ifdef _XOPEN_SOURCE_EXTENDED
1095         char addch_work[(MB_LEN_MAX * 9) + 1];
1096         unsigned addch_used;    /* number of bytes in addch_work[] */
1097         int addch_x;            /* x-position for addch_work[] */
1098         int addch_y;            /* y-position for addch_work[] */
1099 #endif
1100 };
1101
1102 #define WINDOW_EXT(win,field) (((WINDOWLIST *)(win))->field)
1103
1104 #define SP_PRE_INIT(sp)                         \
1105     sp->_cursrow = -1;                          \
1106     sp->_curscol = -1;                          \
1107     sp->_nl = TRUE;                             \
1108     sp->_raw = FALSE;                           \
1109     sp->_cbreak = 0;                            \
1110     sp->_echo = TRUE;                           \
1111     sp->_fifohead = -1;                         \
1112     sp->_endwin = TRUE;                         \
1113     sp->_cursor = -1;                           \
1114     WindowList(sp) = 0;                         \
1115     sp->_outch = NCURSES_SP_NAME(_nc_outch);    \
1116     sp->jump = 0                                \
1117
1118 /* usually in <limits.h> */
1119 #ifndef UCHAR_MAX
1120 #define UCHAR_MAX 255
1121 #endif
1122
1123 /* The terminfo source is assumed to be 7-bit ASCII */
1124 #define is7bits(c)      ((unsigned)(c) < 128)
1125
1126 /* Checks for isprint() should be done on 8-bit characters (non-wide) */
1127 #define is8bits(c)      ((unsigned)(c) <= UCHAR_MAX)
1128
1129 #ifndef min
1130 #define min(a,b)        ((a) > (b)  ?  (b)  :  (a))
1131 #endif
1132
1133 #ifndef max
1134 #define max(a,b)        ((a) < (b)  ?  (b)  :  (a))
1135 #endif
1136
1137 /* usually in <unistd.h> */
1138 #ifndef STDIN_FILENO
1139 #define STDIN_FILENO 0
1140 #endif
1141
1142 #ifndef STDOUT_FILENO
1143 #define STDOUT_FILENO 1
1144 #endif
1145
1146 #ifndef STDERR_FILENO
1147 #define STDERR_FILENO 2
1148 #endif
1149
1150 #ifndef EXIT_SUCCESS
1151 #define EXIT_SUCCESS 0
1152 #endif
1153
1154 #ifndef EXIT_FAILURE
1155 #define EXIT_FAILURE 1
1156 #endif
1157
1158 #ifndef R_OK
1159 #define R_OK    4               /* Test for read permission.  */
1160 #endif
1161 #ifndef W_OK
1162 #define W_OK    2               /* Test for write permission.  */
1163 #endif
1164 #ifndef X_OK
1165 #define X_OK    1               /* Test for execute permission.  */
1166 #endif
1167 #ifndef F_OK
1168 #define F_OK    0               /* Test for existence.  */
1169 #endif
1170
1171 #if HAVE_FCNTL_H
1172 #include <fcntl.h>              /* may define O_BINARY  */
1173 #endif
1174
1175 #ifndef O_BINARY
1176 #define O_BINARY 0
1177 #endif
1178
1179 #ifdef TRACE
1180 #if USE_REENTRANT
1181 #define COUNT_OUTCHARS(n) _nc_count_outchars(n);
1182 #else
1183 #define COUNT_OUTCHARS(n) _nc_outchars += (n);
1184 #endif
1185 #else
1186 #define COUNT_OUTCHARS(n) /* nothing */
1187 #endif
1188
1189 #define RESET_OUTCHARS() COUNT_OUTCHARS(-_nc_outchars)
1190
1191 #define UChar(c)        ((unsigned char)(c))
1192 #define ChCharOf(c)     ((c) & (chtype)A_CHARTEXT)
1193 #define ChAttrOf(c)     ((c) & (chtype)A_ATTRIBUTES)
1194
1195 #ifndef MB_LEN_MAX
1196 #define MB_LEN_MAX 8 /* should be >= MB_CUR_MAX, but that may be a function */
1197 #endif
1198
1199 #if USE_WIDEC_SUPPORT /* { */
1200 #define isEILSEQ(status) (((size_t)status == (size_t)-1) && (errno == EILSEQ))
1201
1202 #define init_mb(state)  memset(&state, 0, sizeof(state))
1203
1204 #if NCURSES_EXT_COLORS
1205 #define NulColor        , 0
1206 #else
1207 #define NulColor        /* nothing */
1208 #endif
1209
1210 #define NulChar         0,0,0,0 /* FIXME: see CCHARW_MAX */
1211 #define CharOf(c)       ((c).chars[0])
1212 #define AttrOf(c)       ((c).attr)
1213
1214 #define AddAttr(c,a)    AttrOf(c) |=  ((a) & A_ATTRIBUTES)
1215 #define RemAttr(c,a)    AttrOf(c) &= ~((a) & A_ATTRIBUTES)
1216 #define SetAttr(c,a)    AttrOf(c) =   ((a) & A_ATTRIBUTES) | WidecExt(c)
1217
1218 #define NewChar2(c,a)   { a, { c, NulChar } NulColor }
1219 #define NewChar(ch)     NewChar2(ChCharOf(ch), ChAttrOf(ch))
1220
1221 #if CCHARW_MAX == 5
1222 #define CharEq(a,b)     (((a).attr == (b).attr) \
1223                        && (a).chars[0] == (b).chars[0] \
1224                        && (a).chars[1] == (b).chars[1] \
1225                        && (a).chars[2] == (b).chars[2] \
1226                        && (a).chars[3] == (b).chars[3] \
1227                        && (a).chars[4] == (b).chars[4] \
1228                         if_EXT_COLORS(&& (a).ext_color == (b).ext_color))
1229 #else
1230 #define CharEq(a,b)     (!memcmp(&(a), &(b), sizeof(a)))
1231 #endif
1232
1233 #define SetChar(ch,c,a) do {                                                        \
1234                             NCURSES_CH_T *_cp = &ch;                                \
1235                             memset(_cp, 0, sizeof(ch));                             \
1236                             _cp->chars[0] = (c);                                            \
1237                             _cp->attr = (a);                                        \
1238                             if_EXT_COLORS(SetPair(ch, PAIR_NUMBER(a)));             \
1239                         } while (0)
1240 #define CHREF(wch)      (&wch)
1241 #define CHDEREF(wch)    (*wch)
1242 #define ARG_CH_T        NCURSES_CH_T *
1243 #define CARG_CH_T       const NCURSES_CH_T *
1244 #define PUTC_DATA       char PUTC_buf[MB_LEN_MAX]; int PUTC_i, PUTC_n; \
1245                         mbstate_t PUT_st; wchar_t PUTC_ch
1246 #define PUTC_INIT       init_mb (PUT_st)
1247 #define PUTC(ch,b)      do { if(!isWidecExt(ch)) {                                  \
1248                         if (Charable(ch)) {                                         \
1249                             fputc(CharOf(ch), b);                                   \
1250                             COUNT_OUTCHARS(1);                                      \
1251                         } else {                                                    \
1252                             PUTC_INIT;                                              \
1253                             for (PUTC_i = 0; PUTC_i < CCHARW_MAX; ++PUTC_i) {       \
1254                                 PUTC_ch = (ch).chars[PUTC_i];                       \
1255                                 if (PUTC_ch == L'\0')                               \
1256                                     break;                                          \
1257                                 PUTC_n = wcrtomb(PUTC_buf,                          \
1258                                                  (ch).chars[PUTC_i], &PUT_st);      \
1259                                 if (PUTC_n <= 0) {                                  \
1260                                     if (PUTC_ch && is8bits(PUTC_ch) && PUTC_i == 0) \
1261                                         putc(PUTC_ch,b);                            \
1262                                     break;                                          \
1263                                 }                                                   \
1264                                 fwrite(PUTC_buf, (unsigned) PUTC_n, 1, b);          \
1265                             }                                                       \
1266                             COUNT_OUTCHARS(PUTC_i);                                 \
1267                         } } } while (0)
1268
1269 #define BLANK           NewChar2(' ', WA_NORMAL)
1270 #define ZEROS           NewChar2('\0', WA_NORMAL)
1271 #define ISBLANK(ch)     ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0')
1272
1273         /*
1274          * Wide characters cannot be represented in the A_CHARTEXT mask of
1275          * attr_t's but an application might have set a narrow character there.
1276          * But even in that case, it would only be a printable character, or
1277          * zero.  Otherwise we can use those bits to tell if a cell is the
1278          * first or extension part of a wide character.
1279          */
1280 #define WidecExt(ch)    (AttrOf(ch) & A_CHARTEXT)
1281 #define isWidecBase(ch) (WidecExt(ch) == 1)
1282 #define isWidecExt(ch)  (WidecExt(ch) > 1 && WidecExt(ch) < 32)
1283 #define SetWidecExt(dst, ext)   AttrOf(dst) &= ~A_CHARTEXT,             \
1284                                 AttrOf(dst) |= (ext + 1)
1285
1286 #define if_WIDEC(code)  code
1287 #define Charable(ch)    ((SP_PARM != 0 && SP_PARM->_legacy_coding)      \
1288                          || (AttrOf(ch) & A_ALTCHARSET)                 \
1289                          || (!isWidecExt(ch) &&                         \
1290                              (ch).chars[1] == L'\0' &&                  \
1291                              _nc_is_charable(CharOf(ch))))
1292
1293 #define L(ch)           L ## ch
1294 #else /* }{ */
1295 #define CharOf(c)       ChCharOf(c)
1296 #define AttrOf(c)       ChAttrOf(c)
1297 #define AddAttr(c,a)    c |= (a)
1298 #define RemAttr(c,a)    c &= ~((a) & A_ATTRIBUTES)
1299 #define SetAttr(c,a)    c = ((c) & ~A_ATTRIBUTES) | (a)
1300 #define NewChar(ch)     (ch)
1301 #define NewChar2(c,a)   ((c) | (a))
1302 #define CharEq(a,b)     ((a) == (b))
1303 #define SetChar(ch,c,a) ch = (c) | (a)
1304 #define CHREF(wch)      wch
1305 #define CHDEREF(wch)    wch
1306 #define ARG_CH_T        NCURSES_CH_T
1307 #define CARG_CH_T       NCURSES_CH_T
1308 #define PUTC_DATA       int data = 0
1309 #define PUTC(ch,b)      do { data = CharOf(ch); putc(data,b); } while (0)
1310
1311 #define BLANK           (' '|A_NORMAL)
1312 #define ZEROS           ('\0'|A_NORMAL)
1313 #define ISBLANK(ch)     (CharOf(ch) == ' ')
1314
1315 #define isWidecExt(ch)  (0)
1316 #define if_WIDEC(code) /* nothing */
1317
1318 #define L(ch)           ch
1319 #endif /* } */
1320
1321 #define AttrOfD(ch)     AttrOf(CHDEREF(ch))
1322 #define CharOfD(ch)     CharOf(CHDEREF(ch))
1323 #define SetChar2(wch,ch)    SetChar(wch,ChCharOf(ch),ChAttrOf(ch))
1324
1325 #define BLANK_ATTR      A_NORMAL
1326 #define BLANK_TEXT      L(' ')
1327
1328 #define CHANGED     -1
1329
1330 #define LEGALYX(w, y, x) \
1331               ((w) != 0 && \
1332                 ((x) >= 0 && (x) <= (w)->_maxx && \
1333                  (y) >= 0 && (y) <= (w)->_maxy))
1334
1335 #define CHANGED_CELL(line,col) \
1336         if (line->firstchar == _NOCHANGE) \
1337                 line->firstchar = line->lastchar = col; \
1338         else if ((col) < line->firstchar) \
1339                 line->firstchar = col; \
1340         else if ((col) > line->lastchar) \
1341                 line->lastchar = col
1342
1343 #define CHANGED_RANGE(line,start,end) \
1344         if (line->firstchar == _NOCHANGE \
1345          || line->firstchar > (start)) \
1346                 line->firstchar = start; \
1347         if (line->lastchar == _NOCHANGE \
1348          || line->lastchar < (end)) \
1349                 line->lastchar = end
1350
1351 #define CHANGED_TO_EOL(line,start,end) \
1352         if (line->firstchar == _NOCHANGE \
1353          || line->firstchar > (start)) \
1354                 line->firstchar = start; \
1355         line->lastchar = end
1356
1357 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
1358
1359 #define FreeIfNeeded(p)  if ((p) != 0) free(p)
1360
1361 /* FreeAndNull() is not a comma-separated expression because some compilers
1362  * do not accept a mixture of void with values.
1363  */
1364 #define FreeAndNull(p)   free(p); p = 0
1365
1366 #include <nc_alloc.h>
1367
1368 /*
1369  * TTY bit definition for converting tabs to spaces.
1370  */
1371 #ifdef TAB3
1372 # define OFLAGS_TABS TAB3       /* POSIX specifies TAB3 */
1373 #else
1374 # ifdef XTABS
1375 #  define OFLAGS_TABS XTABS     /* XTABS is usually the "same" */
1376 # else
1377 #  ifdef OXTABS
1378 #   define OFLAGS_TABS OXTABS   /* the traditional BSD equivalent */
1379 #  else
1380 #   define OFLAGS_TABS 0
1381 #  endif
1382 # endif
1383 #endif
1384
1385 /*
1386  * Standardize/simplify common loops
1387  */
1388 #define each_screen(p) p = _nc_screen_chain; p != 0; p = (p)->_next_screen
1389 #define each_window(sp,p) p = WindowList(sp); p != 0; p = (p)->next
1390 #define each_ripoff(p) p = safe_ripoff_stack; (p - safe_ripoff_stack) < N_RIPS; ++p
1391
1392 /*
1393  * Prefixes for call/return points of library function traces.  We use these to
1394  * instrument the public functions so that the traces can be easily transformed
1395  * into regression scripts.
1396  */
1397 #define T_CALLED(fmt) "called {" fmt
1398 #define T_CREATE(fmt) "create :" fmt
1399 #define T_RETURN(fmt) "return }" fmt
1400
1401 #ifdef TRACE
1402
1403 #if USE_REENTRANT
1404 #define TPUTS_TRACE(s)  _nc_set_tputs_trace(s);
1405 #else
1406 #define TPUTS_TRACE(s)  _nc_tputs_trace = s;
1407 #endif
1408
1409 #define START_TRACE() \
1410         if ((_nc_tracing & TRACE_MAXIMUM) == 0) { \
1411             int t = _nc_getenv_num("NCURSES_TRACE"); \
1412             if (t >= 0) \
1413                 trace((unsigned) t); \
1414         }
1415
1416 /*
1417  * Many of the _tracef() calls use static buffers; lock the trace state before
1418  * trying to fill them.
1419  */
1420 #if USE_REENTRANT
1421 #define USE_TRACEF(mask) _nc_use_tracef(mask)
1422 extern NCURSES_EXPORT(int)      _nc_use_tracef (unsigned);
1423 extern NCURSES_EXPORT(void)     _nc_locked_tracef (const char *, ...) GCC_PRINTFLIKE(1,2);
1424 #else
1425 #define USE_TRACEF(mask) (_nc_tracing & (mask))
1426 #define _nc_locked_tracef _tracef
1427 #endif
1428
1429 #define TR(n, a)        if (USE_TRACEF(n)) _nc_locked_tracef a
1430 #define T(a)            TR(TRACE_CALLS, a)
1431 #define TRACE_RETURN(value,type) return _nc_retrace_##type(value)
1432
1433 #define returnAttr(code)        TRACE_RETURN(code,attr_t)
1434 #define returnBits(code)        TRACE_RETURN(code,unsigned)
1435 #define returnBool(code)        TRACE_RETURN(code,bool)
1436 #define returnCPtr(code)        TRACE_RETURN(code,cptr)
1437 #define returnCVoidPtr(code)    TRACE_RETURN(code,cvoid_ptr)
1438 #define returnChtype(code)      TRACE_RETURN(code,chtype)
1439 #define returnCode(code)        TRACE_RETURN(code,int)
1440 #define returnPtr(code)         TRACE_RETURN(code,ptr)
1441 #define returnSP(code)          TRACE_RETURN(code,sp)
1442 #define returnVoid              T((T_RETURN(""))); return
1443 #define returnVoidPtr(code)     TRACE_RETURN(code,void_ptr)
1444 #define returnWin(code)         TRACE_RETURN(code,win)
1445
1446 extern NCURSES_EXPORT(NCURSES_BOOL)     _nc_retrace_bool (NCURSES_BOOL);
1447 extern NCURSES_EXPORT(NCURSES_CONST void *) _nc_retrace_cvoid_ptr (NCURSES_CONST void *);
1448 extern NCURSES_EXPORT(SCREEN *)         _nc_retrace_sp (SCREEN *);
1449 extern NCURSES_EXPORT(WINDOW *)         _nc_retrace_win (WINDOW *);
1450 extern NCURSES_EXPORT(attr_t)           _nc_retrace_attr_t (attr_t);
1451 extern NCURSES_EXPORT(char *)           _nc_retrace_ptr (char *);
1452 extern NCURSES_EXPORT(char *)           _nc_trace_ttymode(TTY *tty);
1453 extern NCURSES_EXPORT(char *)           _nc_varargs (const char *, va_list);
1454 extern NCURSES_EXPORT(chtype)           _nc_retrace_chtype (chtype);
1455 extern NCURSES_EXPORT(const char *)     _nc_altcharset_name(attr_t, chtype);
1456 extern NCURSES_EXPORT(const char *)     _nc_retrace_cptr (const char *);
1457 extern NCURSES_EXPORT(int)              _nc_retrace_int (int);
1458 extern NCURSES_EXPORT(unsigned)         _nc_retrace_unsigned (unsigned);
1459 extern NCURSES_EXPORT(void *)           _nc_retrace_void_ptr (void *);
1460 extern NCURSES_EXPORT(void)             _nc_fifo_dump (SCREEN *);
1461
1462 #if USE_REENTRANT
1463 NCURSES_WRAPPED_VAR(long, _nc_outchars);
1464 NCURSES_WRAPPED_VAR(const char *, _nc_tputs_trace);
1465 #define _nc_outchars       NCURSES_PUBLIC_VAR(_nc_outchars())
1466 #define _nc_tputs_trace    NCURSES_PUBLIC_VAR(_nc_tputs_trace())
1467 extern NCURSES_EXPORT(void)             _nc_set_tputs_trace (const char *);
1468 extern NCURSES_EXPORT(void)             _nc_count_outchars (long);
1469 #else
1470 extern NCURSES_EXPORT_VAR(const char *) _nc_tputs_trace;
1471 extern NCURSES_EXPORT_VAR(long)         _nc_outchars;
1472 #endif
1473
1474 extern NCURSES_EXPORT_VAR(unsigned)     _nc_tracing;
1475
1476 #if USE_WIDEC_SUPPORT
1477 extern NCURSES_EXPORT(const char *) _nc_viswbuf2 (int, const wchar_t *);
1478 extern NCURSES_EXPORT(const char *) _nc_viswbufn (const wchar_t *, int);
1479 #endif
1480
1481 extern NCURSES_EXPORT(const char *) _nc_viscbuf2 (int, const NCURSES_CH_T *, int);
1482 extern NCURSES_EXPORT(const char *) _nc_viscbuf (const NCURSES_CH_T *, int);
1483
1484 #else /* !TRACE */
1485
1486 #define START_TRACE() /* nothing */
1487
1488 #define T(a)
1489 #define TR(n, a)
1490 #define TPUTS_TRACE(s)
1491
1492 #define returnAttr(code)        return code
1493 #define returnBits(code)        return code
1494 #define returnBool(code)        return code
1495 #define returnCPtr(code)        return code
1496 #define returnCVoidPtr(code)    return code
1497 #define returnChtype(code)      return code
1498 #define returnCode(code)        return code
1499 #define returnPtr(code)         return code
1500 #define returnSP(code)          return code
1501 #define returnVoid              return
1502 #define returnVoidPtr(code)     return code
1503 #define returnWin(code)         return code
1504
1505 #endif /* TRACE/!TRACE */
1506
1507 /*
1508  * Return-codes for tgetent() and friends.
1509  */
1510 #define TGETENT_YES  1          /* entry is found */
1511 #define TGETENT_NO   0          /* entry is not found */
1512 #define TGETENT_ERR -1          /* an error occurred */
1513
1514 extern NCURSES_EXPORT(const char *) _nc_visbuf2 (int, const char *);
1515 extern NCURSES_EXPORT(const char *) _nc_visbufn (const char *, int);
1516
1517 #define EMPTY_MODULE(name) \
1518 extern  NCURSES_EXPORT(void) name (void); \
1519         NCURSES_EXPORT(void) name (void) { }
1520
1521 #define ALL_BUT_COLOR ((chtype)~(A_COLOR))
1522 #define NONBLANK_ATTR (A_NORMAL|A_BOLD|A_DIM|A_BLINK)
1523 #define XMC_CHANGES(c) ((c) & SP_PARM->_xmc_suppress)
1524
1525 #define toggle_attr_on(S,at) {\
1526    if (PAIR_NUMBER(at) > 0) {\
1527       (S) = ((S) & ALL_BUT_COLOR) | (at);\
1528    } else {\
1529       (S) |= (at);\
1530    }\
1531    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1532
1533
1534 #define toggle_attr_off(S,at) {\
1535    if (PAIR_NUMBER(at) > 0) {\
1536       (S) &= ~(at|A_COLOR);\
1537    } else {\
1538       (S) &= ~(at);\
1539    }\
1540    TR(TRACE_ATTRS, ("new attribute is %s", _traceattr((S))));}
1541
1542 #define DelCharCost(sp,count) \
1543                 ((parm_dch != 0) \
1544                 ? sp->_dch_cost \
1545                 : ((delete_character != 0) \
1546                         ? (sp->_dch1_cost * count) \
1547                         : INFINITY))
1548
1549 #define InsCharCost(sp,count) \
1550                 ((parm_ich != 0) \
1551                 ? sp->_ich_cost \
1552                 : ((enter_insert_mode && exit_insert_mode) \
1553                   ? sp->_smir_cost + sp->_rmir_cost + (sp->_ip_cost * count) \
1554                   : ((insert_character != 0) \
1555                     ? ((sp->_ich1_cost + sp->_ip_cost) * count) \
1556                     : INFINITY)))
1557
1558 #if USE_XMC_SUPPORT
1559 #define UpdateAttrs(sp,c)       if (!SameAttrOf(SCREEN_ATTRS(sp), c)) { \
1560                                 attr_t chg = AttrOf(SCREEN_ATTRS(sp)); \
1561                                 VIDATTR(sp, AttrOf(c), GetPair(c)); \
1562                                 if (magic_cookie_glitch > 0 \
1563                                  && XMC_CHANGES((chg ^ AttrOf(SCREEN_ATTRS(sp))))) { \
1564                                         T(("%s @%d before glitch %d,%d", \
1565                                                 __FILE__, __LINE__, \
1566                                                 sp->_cursrow, \
1567                                                 sp->_curscol)); \
1568                                         NCURSES_SP_NAME(_nc_do_xmc_glitch)(NCURSES_SP_ARGx chg); \
1569                                 } \
1570                         }
1571 #else
1572 #define UpdateAttrs(sp,c)       if (!SameAttrOf(SCREEN_ATTRS(sp), c)) \
1573                                     VIDATTR(sp, AttrOf(c), GetPair(c));
1574 #endif
1575
1576 /*
1577  * Macros to make additional parameter to implement wgetch_events()
1578  */
1579 #ifdef NCURSES_WGETCH_EVENTS
1580 #define EVENTLIST_0th(param) param
1581 #define EVENTLIST_1st(param) param
1582 #define EVENTLIST_2nd(param) , param
1583 #else
1584 #define EVENTLIST_0th(param) void
1585 #define EVENTLIST_1st(param) /* nothing */
1586 #define EVENTLIST_2nd(param) /* nothing */
1587 #endif
1588
1589 #if NCURSES_EXPANDED && NCURSES_EXT_FUNCS
1590
1591 #undef  toggle_attr_on
1592 #define toggle_attr_on(S,at) _nc_toggle_attr_on(&(S), at)
1593 extern NCURSES_EXPORT(void) _nc_toggle_attr_on (attr_t *, attr_t);
1594
1595 #undef  toggle_attr_off
1596 #define toggle_attr_off(S,at) _nc_toggle_attr_off(&(S), at)
1597 extern NCURSES_EXPORT(void) _nc_toggle_attr_off (attr_t *, attr_t);
1598
1599 #undef  DelCharCost
1600 #define DelCharCost(sp, count) NCURSES_SP_NAME(_nc_DelCharCost)(NCURSES_SP_ARGx count)
1601
1602 #undef  InsCharCost
1603 #define InsCharCost(sp, count) NCURSES_SP_NAME(_nc_InsCharCost)(NCURSES_SP_ARGx count)
1604
1605 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_DelCharCost) (NCURSES_SP_DCLx int _c);
1606 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(_nc_InsCharCost) (NCURSES_SP_DCLx int _c);
1607
1608 #undef  UpdateAttrs
1609 #define UpdateAttrs(sp,c) NCURSES_SP_NAME(_nc_UpdateAttrs)(NCURSES_SP_ARGx CHREF(c))
1610
1611 #if defined(NEED_NCURSES_CH_T)
1612 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx CARG_CH_T _c);
1613 #else
1614 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_UpdateAttrs) (NCURSES_SP_DCLx chtype c);
1615 #endif
1616
1617 #if NCURSES_SP_FUNCS
1618 extern NCURSES_EXPORT(int) _nc_DelCharCost (int);
1619 extern NCURSES_EXPORT(int) _nc_InsCharCost (int);
1620 extern NCURSES_EXPORT(void) _nc_UpdateAttrs (CARG_CH_T);
1621 #endif /* NCURSES_SP_FUNCS */
1622
1623 #else
1624
1625 extern NCURSES_EXPORT(void) _nc_expanded (void);
1626
1627 #endif
1628
1629 #if !NCURSES_EXT_FUNCS
1630 #define set_escdelay(value) ESCDELAY = value
1631 #endif
1632
1633 #if !HAVE_GETCWD
1634 #define getcwd(buf,len) getwd(buf)
1635 #endif
1636
1637 /* charable.c */
1638 #if USE_WIDEC_SUPPORT
1639 extern NCURSES_EXPORT(bool) _nc_is_charable(wchar_t);
1640 extern NCURSES_EXPORT(int) _nc_to_char(wint_t);
1641 extern NCURSES_EXPORT(wint_t) _nc_to_widechar(int);
1642 #endif
1643
1644 /* comp_captab.c */
1645 typedef struct {
1646         short   nte_name;       /* offset of name to hash on */
1647         int     nte_type;       /* BOOLEAN, NUMBER or STRING */
1648         short   nte_index;      /* index of associated variable in its array */
1649         short   nte_link;       /* index in table of next hash, or -1 */
1650 } name_table_data;
1651
1652 typedef struct
1653 {
1654         short   from;
1655         short   to;
1656         short   source;
1657 } alias_table_data;
1658
1659 /* doupdate.c */
1660 #if USE_XMC_SUPPORT
1661 extern NCURSES_EXPORT(void) _nc_do_xmc_glitch (attr_t);
1662 #endif
1663
1664 /* hardscroll.c */
1665 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
1666 extern NCURSES_EXPORT(void) _nc_linedump (void);
1667 #endif
1668
1669 /* lib_acs.c */
1670 extern NCURSES_EXPORT(void) _nc_init_acs (void); /* corresponds to traditional 'init_acs()' */
1671 extern NCURSES_EXPORT(int)  _nc_msec_cost (const char *const, int);  /* used by 'tack' program */
1672
1673 /* lib_addch.c */
1674 #if USE_WIDEC_SUPPORT
1675 NCURSES_EXPORT(int) _nc_build_wch(WINDOW *win, ARG_CH_T ch);
1676 #endif
1677
1678 /* lib_addstr.c */
1679 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1680 extern NCURSES_EXPORT(int) _nc_wchstrlen(const cchar_t *);
1681 #endif
1682
1683 /* lib_color.c */
1684 extern NCURSES_EXPORT(bool) _nc_reset_colors(void);
1685
1686 /* lib_getch.c */
1687 extern NCURSES_EXPORT(int) _nc_wgetch(WINDOW *, unsigned long *, int EVENTLIST_2nd(_nc_eventlist *));
1688
1689 /* lib_insch.c */
1690 extern NCURSES_EXPORT(int) _nc_insert_ch(SCREEN *, WINDOW *, chtype);
1691
1692 /* lib_mvcur.c */
1693 #define INFINITY        1000000 /* cost: too high to use */
1694
1695 extern NCURSES_EXPORT(void) _nc_mvcur_init (void);
1696 extern NCURSES_EXPORT(void) _nc_mvcur_resume (void);
1697 extern NCURSES_EXPORT(void) _nc_mvcur_wrap (void);
1698
1699 extern NCURSES_EXPORT(int) _nc_scrolln (int, int, int, int);
1700
1701 extern NCURSES_EXPORT(void) _nc_screen_init (void);
1702 extern NCURSES_EXPORT(void) _nc_screen_resume (void);
1703 extern NCURSES_EXPORT(void) _nc_screen_wrap (void);
1704
1705 /* lib_mouse.c */
1706 extern NCURSES_EXPORT(bool) _nc_has_mouse (SCREEN *);
1707
1708 /* lib_mvcur.c */
1709 #define INFINITY        1000000 /* cost: too high to use */
1710 #define BAUDBYTE        9       /* 9 = 7 bits + 1 parity + 1 stop */
1711
1712 /* lib_setup.c */
1713 extern NCURSES_EXPORT(char *) _nc_get_locale(void);
1714 extern NCURSES_EXPORT(int)    _nc_unicode_locale(void);
1715 extern NCURSES_EXPORT(int)    _nc_locale_breaks_acs(TERMINAL *);
1716 extern NCURSES_EXPORT(int)    _nc_setupterm(NCURSES_CONST char *, int, int *, bool);
1717
1718 /* lib_set_term.c */
1719 extern NCURSES_EXPORT(int)    _nc_ripoffline(int, int(*)(WINDOW*, int));
1720
1721 /* lib_tstp.c */
1722 #if USE_SIGWINCH
1723 extern NCURSES_EXPORT(int) _nc_handle_sigwinch(SCREEN *);
1724 #else
1725 #define _nc_handle_sigwinch(a) /* nothing */
1726 #endif
1727
1728 /* lib_wacs.c */
1729 #if USE_WIDEC_SUPPORT
1730 extern NCURSES_EXPORT(void) _nc_init_wacs(void);
1731 #endif
1732
1733 typedef struct {
1734     char *s_head;       /* beginning of the string (may be null) */
1735     char *s_tail;       /* end of the string (may be null) */
1736     size_t s_size;      /* current remaining size available */
1737     size_t s_init;      /* total size available */
1738 } string_desc;
1739
1740 /* strings.c */
1741 extern NCURSES_EXPORT(string_desc *) _nc_str_init (string_desc *, char *, size_t);
1742 extern NCURSES_EXPORT(string_desc *) _nc_str_null (string_desc *, size_t);
1743 extern NCURSES_EXPORT(string_desc *) _nc_str_copy (string_desc *, string_desc *);
1744 extern NCURSES_EXPORT(bool) _nc_safe_strcat (string_desc *, const char *);
1745 extern NCURSES_EXPORT(bool) _nc_safe_strcpy (string_desc *, const char *);
1746
1747 #if !HAVE_STRSTR
1748 #define strstr _nc_strstr
1749 extern NCURSES_EXPORT(char *) _nc_strstr (const char *, const char *);
1750 #endif
1751
1752 /* safe_sprintf.c */
1753 extern NCURSES_EXPORT(char *) _nc_printf_string (const char *, va_list);
1754
1755 /* tries.c */
1756 extern NCURSES_EXPORT(int) _nc_add_to_try (TRIES **, const char *, unsigned);
1757 extern NCURSES_EXPORT(char *) _nc_expand_try (TRIES *, unsigned, int *, size_t);
1758 extern NCURSES_EXPORT(int) _nc_remove_key (TRIES **, unsigned);
1759 extern NCURSES_EXPORT(int) _nc_remove_string (TRIES **, const char *);
1760
1761 /* elsewhere ... */
1762 extern NCURSES_EXPORT(ENTRY *) _nc_delink_entry (ENTRY *, TERMTYPE *);
1763 extern NCURSES_EXPORT(SCREEN *) _nc_screen_of (WINDOW *);
1764 extern NCURSES_EXPORT(TERMINAL*) _nc_get_cur_term (void);
1765 extern NCURSES_EXPORT(WINDOW *) _nc_makenew (int, int, int, int, int);
1766 extern NCURSES_EXPORT(char *) _nc_trace_buf (int, size_t);
1767 extern NCURSES_EXPORT(char *) _nc_trace_bufcat (int, const char *);
1768 extern NCURSES_EXPORT(char *) _nc_tracechar (SCREEN *, int);
1769 extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
1770 extern NCURSES_EXPORT(int) _nc_access (const char *, int);
1771 extern NCURSES_EXPORT(int) _nc_baudrate (int);
1772 extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
1773 extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
1774 extern NCURSES_EXPORT(int) _nc_keypad (SCREEN *, bool);
1775 extern NCURSES_EXPORT(int) _nc_ospeed (int);
1776 extern NCURSES_EXPORT(int) _nc_outch (int);
1777 extern NCURSES_EXPORT(int) _nc_putp(const char *, const char *);
1778 extern NCURSES_EXPORT(int) _nc_putp_flush(const char *, const char *);
1779 extern NCURSES_EXPORT(int) _nc_read_termcap_entry (const char *const, TERMTYPE *const);
1780 extern NCURSES_EXPORT(int) _nc_setupscreen (int, int, FILE *, bool, int);
1781 extern NCURSES_EXPORT(int) _nc_timed_wait (SCREEN *, int, int, int * EVENTLIST_2nd(_nc_eventlist *));
1782 extern NCURSES_EXPORT(void) _nc_do_color (short, short, bool, NCURSES_OUTC);
1783 extern NCURSES_EXPORT(void) _nc_flush (void);
1784 extern NCURSES_EXPORT(void) _nc_free_and_exit (int) GCC_NORETURN;
1785 extern NCURSES_EXPORT(void) _nc_free_entry (ENTRY *, TERMTYPE *);
1786 extern NCURSES_EXPORT(void) _nc_freeall (void);
1787 extern NCURSES_EXPORT(void) _nc_hash_map (void);
1788 extern NCURSES_EXPORT(void) _nc_init_keytry (SCREEN *);
1789 extern NCURSES_EXPORT(void) _nc_keep_tic_dir (const char *);
1790 extern NCURSES_EXPORT(void) _nc_make_oldhash (int i);
1791 extern NCURSES_EXPORT(void) _nc_scroll_oldhash (int n, int top, int bot);
1792 extern NCURSES_EXPORT(void) _nc_scroll_optimize (void);
1793 extern NCURSES_EXPORT(void) _nc_set_buffer (FILE *, bool);
1794 extern NCURSES_EXPORT(void) _nc_signal_handler (bool);
1795 extern NCURSES_EXPORT(void) _nc_synchook (WINDOW *);
1796 extern NCURSES_EXPORT(void) _nc_trace_tries (TRIES *);
1797
1798 #if NO_LEAKS
1799 extern NCURSES_EXPORT(void) _nc_alloc_entry_leaks(void);
1800 extern NCURSES_EXPORT(void) _nc_captoinfo_leaks(void);
1801 extern NCURSES_EXPORT(void) _nc_codes_leaks(void);
1802 extern NCURSES_EXPORT(void) _nc_comp_captab_leaks(void);
1803 extern NCURSES_EXPORT(void) _nc_comp_scan_leaks(void);
1804 extern NCURSES_EXPORT(void) _nc_keyname_leaks(void);
1805 extern NCURSES_EXPORT(void) _nc_names_leaks(void);
1806 extern NCURSES_EXPORT(void) _nc_tgetent_leaks(void);
1807 #endif
1808
1809 #ifndef USE_TERMLIB
1810 extern NCURSES_EXPORT(NCURSES_CH_T) _nc_render (WINDOW *, NCURSES_CH_T);
1811 extern NCURSES_EXPORT(int) _nc_waddch_nosync (WINDOW *, const NCURSES_CH_T);
1812 extern NCURSES_EXPORT(void) _nc_scroll_window (WINDOW *, int const, NCURSES_SIZE_T const, NCURSES_SIZE_T const, NCURSES_CH_T);
1813 #endif
1814
1815 #if USE_WIDEC_SUPPORT && !defined(USE_TERMLIB)
1816 extern NCURSES_EXPORT(size_t) _nc_wcrtomb (char *, wchar_t, mbstate_t *);
1817 #endif
1818
1819 #if USE_SIZECHANGE
1820 extern NCURSES_EXPORT(void) _nc_update_screensize (SCREEN *);
1821 #endif
1822
1823 #if HAVE_RESIZETERM
1824 extern NCURSES_EXPORT(void) _nc_resize_margins (WINDOW *);
1825 #else
1826 #define _nc_resize_margins(wp) /* nothing */
1827 #endif
1828
1829 #ifdef NCURSES_WGETCH_EVENTS
1830 extern NCURSES_EXPORT(int) _nc_eventlist_timeout(_nc_eventlist *);
1831 #else
1832 #define wgetch_events(win, evl) wgetch(win)
1833 #define wgetnstr_events(win, str, maxlen, evl) wgetnstr(win, str, maxlen)
1834 #endif
1835
1836 /*
1837  * Not everyone has vsscanf(), but we'd like to use it for scanw().
1838  */
1839 #if !HAVE_VSSCANF
1840 extern int vsscanf(const char *str, const char *format, va_list __arg);
1841 #endif
1842
1843 /* scroll indices */
1844 extern NCURSES_EXPORT_VAR(int *) _nc_oldnums;
1845
1846 #define USE_SETBUF_0 0
1847
1848 #define NC_BUFFERED(sp,flag) NCURSES_SP_NAME(_nc_set_buffer)(NCURSES_SP_ARGx sp->_ofp, flag)
1849
1850 #define NC_OUTPUT(sp) ((sp != 0) ? sp->_ofp : stdout)
1851
1852 /*
1853  * On systems with a broken linker, define 'SP' as a function to force the
1854  * linker to pull in the data-only module with 'SP'.
1855  */
1856 #define _nc_alloc_screen_sp() typeCalloc(SCREEN, 1)
1857
1858 #if BROKEN_LINKER
1859 extern NCURSES_EXPORT(SCREEN *) _nc_screen (void);
1860 extern NCURSES_EXPORT(int)      _nc_alloc_screen (void);
1861 extern NCURSES_EXPORT(void)     _nc_set_screen (SCREEN *);
1862 #define CURRENT_SCREEN          _nc_screen()
1863 #else
1864 /* current screen is private data; avoid possible linking conflicts too */
1865 extern NCURSES_EXPORT_VAR(SCREEN *) SP;
1866 #define CURRENT_SCREEN SP
1867 #define _nc_alloc_screen()      ((SP = _nc_alloc_screen_sp()) != 0)
1868 #define _nc_set_screen(sp)      SP = sp
1869 #endif
1870
1871 #if NCURSES_SP_FUNCS && 0
1872 #define CURRENT_SCREEN_PRE      (IsPreScreen(CURRENT_SCREEN) ? CURRENT_SCREEN : new_prescr())
1873 #else
1874 #define CURRENT_SCREEN_PRE      CURRENT_SCREEN
1875 #endif
1876
1877 /*
1878  * We don't want to use the lines or columns capabilities internally, because
1879  * if the application is running multiple screens under X, it's quite possible
1880  * they could all have type xterm but have different sizes!  So...
1881  */
1882 #define screen_lines(sp)        (sp)->_lines
1883 #define screen_columns(sp)      (sp)->_columns
1884
1885 extern NCURSES_EXPORT(int) _nc_slk_initialize (WINDOW *, int);
1886 extern NCURSES_EXPORT(int) _nc_format_slks (NCURSES_SP_DCLx int _c);
1887
1888 /*
1889  * Some constants related to SLK's
1890  */
1891 #define MAX_SKEY_OLD       8    /* count of soft keys */
1892 #define MAX_SKEY_LEN_OLD   8    /* max length of soft key text */
1893 #define MAX_SKEY_PC       12    /* This is what most PC's have */
1894 #define MAX_SKEY_LEN_PC    5
1895
1896 /* Macro to check whether or not we use a standard format */
1897 #define SLK_STDFMT(fmt) (fmt < 3)
1898 /* Macro to determine height of label window */
1899 #define SLK_LINES(fmt)  (SLK_STDFMT(fmt) ? 1 : ((fmt) - 2))
1900
1901 #define MAX_SKEY(fmt)     (SLK_STDFMT(fmt)? MAX_SKEY_OLD : MAX_SKEY_PC)
1902 #define MAX_SKEY_LEN(fmt) (SLK_STDFMT(fmt)? MAX_SKEY_LEN_OLD : MAX_SKEY_LEN_PC)
1903
1904 /*
1905  * Common error messages
1906  */
1907 #define MSG_NO_MEMORY "Out of memory"
1908 #define MSG_NO_INPUTS "Premature EOF"
1909
1910 extern NCURSES_EXPORT(int) _nc_set_tty_mode(TTY *);
1911 extern NCURSES_EXPORT(int) _nc_get_tty_mode(TTY *);
1912
1913 /* timed_wait flag definitions */
1914 #define TW_NONE    0
1915 #define TW_INPUT   1
1916 #define TW_MOUSE   2
1917 #define TW_ANY     (TW_INPUT | TW_MOUSE)
1918 #define TW_EVENT   4
1919
1920 #define SetSafeOutcWrapper(outc)            \
1921     SCREEN* sp = CURRENT_SCREEN;            \
1922     if (sp==0) {                            \
1923         struct screen dummy;                \
1924         sp = &dummy;                        \
1925         memset(sp,0,sizeof(struct screen)); \
1926         sp->_outch = _nc_outc_wrapper;      \
1927     }\
1928     sp->jump = outc
1929
1930 #ifdef USE_TERM_DRIVER
1931 struct DriverTCB; /* Terminal Control Block forward declaration */
1932 typedef void* TERM_HANDLE;
1933
1934 typedef struct _termInfo
1935 {
1936     bool caninit;
1937
1938     bool hascolor;
1939     bool initcolor;
1940     bool canchange;
1941
1942     int  tabsize;
1943
1944     int  maxcolors;
1945     int  maxpairs;
1946     int  nocolorvideo;
1947
1948     int  numlabels;
1949     int  labelwidth;
1950     int  labelheight;
1951
1952     const color_t* defaultPalette;
1953 } TerminalInfo;
1954
1955 typedef struct term_driver {
1956     bool   isTerminfo;
1957     bool   (*CanHandle)(struct DriverTCB*,const char*,int*);
1958     void   (*init)(struct DriverTCB*);
1959     void   (*release)(struct DriverTCB*);
1960     int    (*size)(struct DriverTCB*, int* Line, int *Cols);
1961     int    (*sgmode)(struct DriverTCB*, bool setFlag, TTY*);
1962     chtype (*conattr)(struct DriverTCB*);
1963     int    (*hwcur)(struct DriverTCB*, int yold, int xold, int y, int x);
1964     int    (*mode)(struct DriverTCB*, bool progFlag, bool defFlag);
1965     bool   (*rescol)(struct DriverTCB*);
1966     bool   (*rescolors)(struct DriverTCB*);
1967     void   (*color)(struct DriverTCB*,bool fore, int color, int(*)(SCREEN*,int));
1968     int    (*doBeepOrFlash)(struct DriverTCB*, bool);
1969     void   (*initpair)(struct DriverTCB*,short,short,short);
1970     void   (*initcolor)(struct DriverTCB*,short,short,short,short);
1971     void   (*docolor)(struct DriverTCB*,short,short,bool,int(*)(SCREEN*,int));
1972     void   (*initmouse)(struct DriverTCB*);
1973     void   (*setfilter)(struct DriverTCB*);
1974     void   (*hwlabel)(struct DriverTCB*,int,char*);
1975     void   (*hwlabelOnOff)(struct DriverTCB*,bool);
1976     int    (*update)(struct DriverTCB*);
1977     int    (*defaultcolors)(struct DriverTCB*,int,int);
1978     int    (*print)(struct DriverTCB*,char*,int);
1979     int    (*getsize)(struct DriverTCB*,int*,int*);
1980     int    (*setsize)(struct DriverTCB*,int,int);
1981     void   (*initacs)(struct DriverTCB*,chtype*,chtype*);
1982     void   (*scinit)(SCREEN *);
1983     void   (*scexit)(SCREEN *);
1984     int    (*twait)(struct DriverTCB*,int,int,int* EVENTLIST_2nd(_nc_eventlist*));
1985     int    (*read)(struct DriverTCB*,int*);
1986     int    (*nap)(struct DriverTCB*,int);
1987     int    (*kpad)(struct DriverTCB*, bool);
1988     int    (*kyOk)(struct DriverTCB*, int, bool);
1989     bool   (*kyExist)(struct DriverTCB*, int);
1990 } TERM_DRIVER;
1991
1992 typedef struct DriverTCB
1993 {
1994     TERMINAL      term;   /* needs to be the first Element !!! */
1995     TERM_HANDLE   inp;    /* The input handle of the Terminal */
1996     TERM_HANDLE   out;    /* The output handle of the Terminal in shell mode */
1997     TERM_HANDLE   hdl;    /* The output handle of the Terminal in prog  mode */
1998     TERM_DRIVER*  drv;    /* The driver for that Terminal */
1999     SCREEN*       csp;    /* The screen that owns that Terminal */
2000     TerminalInfo  info;   /* Driver independent core capabilities of the Terminal */
2001     void*         prop;   /* Driver dependent property storage to be used by the Driver */
2002     long          magic;
2003 } TERMINAL_CONTROL_BLOCK;
2004
2005 #define NCDRV_MAGIC(id) (0x47110000 | (id&0xffff))
2006 #define NCDRV_TINFO      0x01
2007 #define NCDRV_WINCONSOLE 0x02
2008
2009 #define TCBOf(sp)    ((TERMINAL_CONTROL_BLOCK*)(TerminalOf(sp)))
2010 #define InfoOf(sp)   TCBOf(sp)->info
2011 #define CallDriver(sp,method)                        TCBOf(sp)->drv->method(TCBOf(sp))
2012 #define CallDriver_1(sp,method,arg1)                 TCBOf(sp)->drv->method(TCBOf(sp),arg1)
2013 #define CallDriver_2(sp,method,arg1,arg2)            TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2)
2014 #define CallDriver_3(sp,method,arg1,arg2,arg3)       TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3)
2015 #define CallDriver_4(sp,method,arg1,arg2,arg3,arg4)  TCBOf(sp)->drv->method(TCBOf(sp),arg1,arg2,arg3,arg4)
2016
2017 extern NCURSES_EXPORT_VAR(const color_t*) _nc_cga_palette;
2018 extern NCURSES_EXPORT_VAR(const color_t*) _nc_hls_palette;
2019
2020 extern NCURSES_EXPORT(int)      _nc_get_driver(TERMINAL_CONTROL_BLOCK*, const char*, int*);
2021 extern NCURSES_EXPORT(void)     _nc_get_screensize_ex(SCREEN *, TERMINAL *, int *, int *);
2022 #endif /* USE_TERM_DRIVER */
2023
2024 /*
2025  * Entrypoints which are actually provided in the terminal driver, which would
2026  * be an sp-name otherwise.
2027  */
2028 #ifdef USE_TERM_DRIVER
2029 #define TINFO_HAS_KEY           _nc_tinfo_has_key
2030 #define TINFO_DOUPDATE          _nc_tinfo_doupdate
2031 #define TINFO_MVCUR             _nc_tinfo_mvcur
2032 extern NCURSES_EXPORT(int)      TINFO_HAS_KEY(SCREEN*, int);
2033 extern NCURSES_EXPORT(int)      TINFO_DOUPDATE(SCREEN *);
2034 extern NCURSES_EXPORT(int)      TINFO_MVCUR(SCREEN*, int, int, int, int);
2035 #else
2036 #define TINFO_HAS_KEY           NCURSES_SP_NAME(has_key)
2037 #define TINFO_DOUPDATE          NCURSES_SP_NAME(doupdate)
2038 #define TINFO_MVCUR             NCURSES_SP_NAME(mvcur)
2039 #endif
2040
2041 /*
2042  * Entrypoints using an extra parameter with the terminal driver.
2043  */
2044 #ifdef USE_TERM_DRIVER
2045 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, TERMINAL *, int *, int *);
2046 extern NCURSES_EXPORT(int)    _nc_setupterm_ex(TERMINAL **, NCURSES_CONST char *, int , int *, bool);
2047 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2048         _nc_get_screensize(sp, tp, lp, cp)
2049 #define TINFO_SET_CURTERM(sp, tp) \
2050         NCURSES_SP_NAME(set_curterm)(sp, tp)
2051 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2052         _nc_setupterm_ex(tpp, name, fd, err, reuse)
2053 #else /* !USE_TERM_DRIVER */
2054 extern NCURSES_EXPORT(void)   _nc_get_screensize(SCREEN *, int *, int *);
2055 #define TINFO_GET_SIZE(sp, tp, lp, cp) \
2056         _nc_get_screensize(sp, lp, cp)
2057 #define TINFO_SET_CURTERM(sp, tp) \
2058         set_curterm(tp)
2059 #define TINFO_SETUP_TERM(tpp, name, fd, err, reuse) \
2060         _nc_setupterm(name, fd, err, reuse)
2061 #endif /* !USE_TERM_DRIVER */
2062
2063 #ifdef USE_TERM_DRIVER
2064 #ifdef __MINGW32__
2065 #include <nc_mingw.h>
2066 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_WIN_DRIVER;
2067 #endif
2068 extern NCURSES_EXPORT_VAR(TERM_DRIVER) _nc_TINFO_DRIVER;
2069 #endif
2070
2071 #ifdef USE_TERM_DRIVER
2072 #define IsTermInfo(sp)       (TCBOf(sp) && ((TCBOf(sp)->drv->isTerminfo)))
2073 #else
2074 #define IsTermInfo(sp)       TRUE
2075 #endif
2076
2077 #define HasTInfoTerminal(sp) ((0 != TerminalOf(sp)) && IsTermInfo(sp))
2078 #define IsValidTIScreen(sp)  (HasTInfoTerminal(sp))
2079
2080 /*
2081  * Exported entrypoints beyond the published API
2082  */
2083 #if NCURSES_SP_FUNCS
2084 extern NCURSES_EXPORT(WINDOW *) _nc_curscr_of(SCREEN*);
2085 extern NCURSES_EXPORT(WINDOW *) _nc_newscr_of(SCREEN*);
2086 extern NCURSES_EXPORT(WINDOW *) _nc_stdscr_of(SCREEN*);
2087 extern NCURSES_EXPORT(int)      _nc_outc_wrapper(SCREEN*,int);
2088
2089 #if USE_REENTRANT
2090 extern NCURSES_EXPORT(int)       NCURSES_SP_NAME(_nc_TABSIZE)(SCREEN*);
2091 extern NCURSES_EXPORT(char *)    NCURSES_SP_NAME(longname)(SCREEN*);
2092 #endif
2093
2094 #if NCURSES_EXT_FUNCS
2095 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tabsize)(SCREEN*, int);
2096 #endif
2097
2098 /*
2099  * We put the safe versions of various calls here as they are not published
2100  * part of the API up to now
2101  */
2102 extern NCURSES_EXPORT(TERMINAL*) NCURSES_SP_NAME(_nc_get_cur_term) (SCREEN *sp);
2103 extern NCURSES_EXPORT(WINDOW *) NCURSES_SP_NAME(_nc_makenew) (SCREEN*, int, int, int, int, int);
2104 extern NCURSES_EXPORT(bool)     NCURSES_SP_NAME(_nc_reset_colors)(SCREEN*);
2105 extern NCURSES_EXPORT(char *)   NCURSES_SP_NAME(_nc_printf_string)(SCREEN*, const char *, va_list);
2106 extern NCURSES_EXPORT(chtype)   NCURSES_SP_NAME(_nc_acs_char)(SCREEN*,int);
2107 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_curs_set)(SCREEN*,int);
2108 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_get_tty_mode)(SCREEN*,TTY*);
2109 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_mcprint)(SCREEN*,char*, int);
2110 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_msec_cost)(SCREEN*, const char *, int);
2111 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_outch)(SCREEN*, int);
2112 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp)(SCREEN*, const char *, const char*);
2113 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_putp_flush)(SCREEN*, const char *, const char *);
2114 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_resetty)(SCREEN*);
2115 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_resize_term)(SCREEN*,int,int);
2116 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_ripoffline)(SCREEN*, int, int (*)(WINDOW *,int));
2117 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_savetty)(SCREEN*);
2118 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scr_init)(SCREEN*,const char*);
2119 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scr_restore)(SCREEN*, const char*);
2120 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_scrolln)(SCREEN*, int, int, int, int);
2121 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_set_tty_mode)(SCREEN*, TTY*);
2122 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_setupscreen)(SCREEN**, int, int, FILE *, bool, int);
2123 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tgetent)(SCREEN*,char*,const char *);
2124 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_tigetnum)(SCREEN*,NCURSES_CONST char*);
2125 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_vid_attr)(SCREEN *, attr_t, short, void *);
2126 extern NCURSES_EXPORT(int)      NCURSES_SP_NAME(_nc_vidputs)(SCREEN*,chtype,int(*) (SCREEN*, int));
2127 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_color)(SCREEN*, short, short, bool, NCURSES_SP_OUTC);
2128 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_do_xmc_glitch)(SCREEN*, attr_t);
2129 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_flush)(SCREEN*);
2130 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_free_and_exit)(SCREEN*, int) GCC_NORETURN;
2131 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_freeall)(SCREEN*);
2132 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_hash_map)(SCREEN*);
2133 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_init_acs)(SCREEN*);
2134 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_make_oldhash)(SCREEN*, int i);
2135 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_init)(SCREEN*);
2136 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_resume)(SCREEN*);
2137 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_mvcur_wrap)(SCREEN*);
2138 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_init)(SCREEN*);
2139 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_resume)(SCREEN*);
2140 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_screen_wrap)(SCREEN*);
2141 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_oldhash)(SCREEN*, int n, int top, int bot);
2142 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_scroll_optimize)(SCREEN*);
2143 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_set_buffer)(SCREEN*, FILE *, bool);
2144
2145 extern NCURSES_EXPORT(void)     _nc_cookie_init(SCREEN *sp);
2146
2147 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
2148 extern NCURSES_EXPORT(void)     NCURSES_SP_NAME(_nc_linedump)(SCREEN*);
2149 #endif
2150
2151 #if USE_WIDEC_SUPPORT
2152 extern NCURSES_EXPORT(wchar_t *) NCURSES_SP_NAME(_nc_wunctrl)(SCREEN*, cchar_t *);
2153 #endif
2154
2155 #endif /* NCURSES_SP_FUNCS */
2156
2157 #if NCURSES_SP_FUNCS
2158
2159 #define safe_keyname NCURSES_SP_NAME(keyname)
2160 #define safe_unctrl  NCURSES_SP_NAME(unctrl)
2161 #define safe_ungetch NCURSES_SP_NAME(ungetch)
2162
2163 #else
2164
2165 #define safe_keyname _nc_keyname
2166 #define safe_unctrl  _nc_unctrl
2167 #define safe_ungetch _nc_ungetch
2168
2169 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_keyname (SCREEN *, int);
2170 extern NCURSES_EXPORT(int) _nc_ungetch (SCREEN *, int);
2171 extern NCURSES_EXPORT(NCURSES_CONST char *) _nc_unctrl (SCREEN *, chtype);
2172
2173 #endif
2174
2175 #ifdef __cplusplus
2176 }
2177 #endif
2178
2179 #endif /* CURSES_PRIV_H */