blob: 217ae1b522db9f9213f0364743f98426848ffc7b [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002 * Copyright (c) 2001-2013,2015 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303 * *
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/****************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +010030 * Author: Thomas E. Dickey 2001-on *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053031 ****************************************************************************/
32/* LINTLIBRARY */
33
34/* ./tty/hardscroll.c */
35
36#include <curses.priv.h>
37
38#undef _nc_oldnums
39int *_nc_oldnums;
40
Steve Kondikae271bc2015-11-15 02:50:53 +010041#undef _nc_scroll_optimize_sp
42void _nc_scroll_optimize_sp(
43 SCREEN *sp)
44 { /* void */ }
45
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053046#undef _nc_scroll_optimize
47void _nc_scroll_optimize(void)
48 { /* void */ }
49
Steve Kondikae271bc2015-11-15 02:50:53 +010050#undef _nc_linedump_sp
51void _nc_linedump_sp(
52 SCREEN *sp)
53 { /* void */ }
54
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053055#undef _nc_linedump
56void _nc_linedump(void)
57 { /* void */ }
58
59/* ./tty/hashmap.c */
60
Steve Kondikae271bc2015-11-15 02:50:53 +010061#undef _nc_hash_map_sp
62void _nc_hash_map_sp(
63 SCREEN *sp)
64 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053065
66#undef _nc_hash_map
67void _nc_hash_map(void)
68 { /* void */ }
69
Steve Kondikae271bc2015-11-15 02:50:53 +010070#undef _nc_make_oldhash_sp
71void _nc_make_oldhash_sp(
72 SCREEN *sp,
73 int i)
74 { /* void */ }
75
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053076#undef _nc_make_oldhash
77void _nc_make_oldhash(
78 int i)
79 { /* void */ }
80
Steve Kondikae271bc2015-11-15 02:50:53 +010081#undef _nc_scroll_oldhash_sp
82void _nc_scroll_oldhash_sp(
83 SCREEN *sp,
84 int n,
85 int top,
86 int bot)
87 { /* void */ }
88
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053089#undef _nc_scroll_oldhash
90void _nc_scroll_oldhash(
91 int n,
92 int top,
93 int bot)
94 { /* void */ }
95
96/* ./base/lib_addch.c */
97
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053098#undef _nc_render
99cchar_t _nc_render(
100 WINDOW *win,
101 cchar_t ch)
102 { return(*(cchar_t *)0); }
103
104#undef _nc_build_wch
105int _nc_build_wch(
106 WINDOW *win,
107 cchar_t *ch)
108 { return(*(int *)0); }
109
110#undef _nc_waddch_nosync
111int _nc_waddch_nosync(
112 WINDOW *win,
113 const cchar_t c)
114 { return(*(int *)0); }
115
116#undef waddch
117int waddch(
118 WINDOW *win,
119 const chtype ch)
120 { return(*(int *)0); }
121
122#undef wechochar
123int wechochar(
124 WINDOW *win,
125 const chtype ch)
126 { return(*(int *)0); }
127
128/* ./base/lib_addstr.c */
129
130#undef waddnstr
131int waddnstr(
132 WINDOW *win,
133 const char *astr,
134 int n)
135 { return(*(int *)0); }
136
137#undef waddchnstr
138int waddchnstr(
139 WINDOW *win,
140 const chtype *astr,
141 int n)
142 { return(*(int *)0); }
143
144#undef _nc_wchstrlen
145int _nc_wchstrlen(
146 const cchar_t *s)
147 { return(*(int *)0); }
148
149#undef wadd_wchnstr
150int wadd_wchnstr(
151 WINDOW *win,
152 const cchar_t *astr,
153 int n)
154 { return(*(int *)0); }
155
156#undef waddnwstr
157int waddnwstr(
158 WINDOW *win,
159 const wchar_t *str,
160 int n)
161 { return(*(int *)0); }
162
163/* ./base/lib_beep.c */
164
Steve Kondikae271bc2015-11-15 02:50:53 +0100165#undef beep_sp
166int beep_sp(
167 SCREEN *sp)
168 { return(*(int *)0); }
169
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530170#undef beep
171int beep(void)
172 { return(*(int *)0); }
173
174/* ./base/lib_bkgd.c */
175
176#undef wbkgrndset
177void wbkgrndset(
178 WINDOW *win,
179 const cchar_t *ch)
180 { /* void */ }
181
182#undef wbkgdset
183void wbkgdset(
184 WINDOW *win,
185 chtype ch)
186 { /* void */ }
187
188#undef wbkgrnd
189int wbkgrnd(
190 WINDOW *win,
191 const cchar_t *ch)
192 { return(*(int *)0); }
193
194#undef wbkgd
195int wbkgd(
196 WINDOW *win,
197 chtype ch)
198 { return(*(int *)0); }
199
200/* ./base/lib_box.c */
201
202#undef wborder
203int wborder(
204 WINDOW *win,
205 chtype ls,
206 chtype rs,
207 chtype ts,
208 chtype bs,
209 chtype tl,
210 chtype tr,
211 chtype bl,
212 chtype br)
213 { return(*(int *)0); }
214
215/* ./base/lib_chgat.c */
216
217#undef wchgat
218int wchgat(
219 WINDOW *win,
220 int n,
221 attr_t attr,
222 short color,
223 const void *opts)
224 { return(*(int *)0); }
225
226/* ./base/lib_clear.c */
227
228#undef wclear
229int wclear(
230 WINDOW *win)
231 { return(*(int *)0); }
232
233/* ./base/lib_clearok.c */
234
235#undef clearok
236int clearok(
237 WINDOW *win,
238 NCURSES_BOOL flag)
239 { return(*(int *)0); }
240
241/* ./base/lib_clrbot.c */
242
243#undef wclrtobot
244int wclrtobot(
245 WINDOW *win)
246 { return(*(int *)0); }
247
248/* ./base/lib_clreol.c */
249
250#undef wclrtoeol
251int wclrtoeol(
252 WINDOW *win)
253 { return(*(int *)0); }
254
255/* ./base/lib_color.c */
256
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530257#undef COLOR_PAIRS
258int COLOR_PAIRS;
259#undef COLORS
260int COLORS;
261
Steve Kondikae271bc2015-11-15 02:50:53 +0100262#undef _nc_reset_colors_sp
263NCURSES_BOOL _nc_reset_colors_sp(
264 SCREEN *sp)
265 { return(*(NCURSES_BOOL *)0); }
266
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530267#undef _nc_reset_colors
268NCURSES_BOOL _nc_reset_colors(void)
269 { return(*(NCURSES_BOOL *)0); }
270
Steve Kondikae271bc2015-11-15 02:50:53 +0100271#undef start_color_sp
272int start_color_sp(
273 SCREEN *sp)
274 { return(*(int *)0); }
275
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530276#undef start_color
277int start_color(void)
278 { return(*(int *)0); }
279
Steve Kondikae271bc2015-11-15 02:50:53 +0100280#undef init_pair_sp
281int init_pair_sp(
282 SCREEN *sp,
283 short pair,
284 short f,
285 short b)
286 { return(*(int *)0); }
287
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530288#undef init_pair
289int init_pair(
290 short pair,
291 short f,
292 short b)
293 { return(*(int *)0); }
294
Steve Kondikae271bc2015-11-15 02:50:53 +0100295#undef init_color_sp
296int init_color_sp(
297 SCREEN *sp,
298 short color,
299 short r,
300 short g,
301 short b)
302 { return(*(int *)0); }
303
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530304#undef init_color
305int init_color(
306 short color,
307 short r,
308 short g,
309 short b)
310 { return(*(int *)0); }
311
Steve Kondikae271bc2015-11-15 02:50:53 +0100312#undef can_change_color_sp
313NCURSES_BOOL can_change_color_sp(
314 SCREEN *sp)
315 { return(*(NCURSES_BOOL *)0); }
316
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530317#undef can_change_color
318NCURSES_BOOL can_change_color(void)
319 { return(*(NCURSES_BOOL *)0); }
320
Steve Kondikae271bc2015-11-15 02:50:53 +0100321#undef has_colors_sp
322NCURSES_BOOL has_colors_sp(
323 SCREEN *sp)
324 { return(*(NCURSES_BOOL *)0); }
325
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530326#undef has_colors
327NCURSES_BOOL has_colors(void)
328 { return(*(NCURSES_BOOL *)0); }
329
Steve Kondikae271bc2015-11-15 02:50:53 +0100330#undef color_content_sp
331int color_content_sp(
332 SCREEN *sp,
333 short color,
334 short *r,
335 short *g,
336 short *b)
337 { return(*(int *)0); }
338
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530339#undef color_content
340int color_content(
341 short color,
342 short *r,
343 short *g,
344 short *b)
345 { return(*(int *)0); }
346
Steve Kondikae271bc2015-11-15 02:50:53 +0100347#undef pair_content_sp
348int pair_content_sp(
349 SCREEN *sp,
350 short pair,
351 short *f,
352 short *b)
353 { return(*(int *)0); }
354
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530355#undef pair_content
356int pair_content(
357 short pair,
358 short *f,
359 short *b)
360 { return(*(int *)0); }
361
Steve Kondikae271bc2015-11-15 02:50:53 +0100362#undef _nc_do_color_sp
363void _nc_do_color_sp(
364 SCREEN *sp,
365 int old_pair,
366 int pair,
367 int reverse,
368 NCURSES_OUTC_sp outc)
369 { /* void */ }
370
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530371#undef _nc_do_color
372void _nc_do_color(
Steve Kondikae271bc2015-11-15 02:50:53 +0100373 int old_pair,
374 int pair,
375 int reverse,
376 NCURSES_OUTC outc)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530377 { /* void */ }
378
379/* ./base/lib_colorset.c */
380
381#undef wcolor_set
382int wcolor_set(
383 WINDOW *win,
384 short color_pair_number,
385 void *opts)
386 { return(*(int *)0); }
387
388/* ./base/lib_delch.c */
389
390#undef wdelch
391int wdelch(
392 WINDOW *win)
393 { return(*(int *)0); }
394
395/* ./base/lib_delwin.c */
396
397#undef delwin
398int delwin(
399 WINDOW *win)
400 { return(*(int *)0); }
401
402/* ./base/lib_echo.c */
403
Steve Kondikae271bc2015-11-15 02:50:53 +0100404#undef echo_sp
405int echo_sp(
406 SCREEN *sp)
407 { return(*(int *)0); }
408
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530409#undef echo
410int echo(void)
411 { return(*(int *)0); }
412
Steve Kondikae271bc2015-11-15 02:50:53 +0100413#undef noecho_sp
414int noecho_sp(
415 SCREEN *sp)
416 { return(*(int *)0); }
417
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530418#undef noecho
419int noecho(void)
420 { return(*(int *)0); }
421
422/* ./base/lib_endwin.c */
423
Steve Kondikae271bc2015-11-15 02:50:53 +0100424#undef endwin_sp
425int endwin_sp(
426 SCREEN *sp)
427 { return(*(int *)0); }
428
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530429#undef endwin
430int endwin(void)
431 { return(*(int *)0); }
432
433/* ./base/lib_erase.c */
434
435#undef werase
436int werase(
437 WINDOW *win)
438 { return(*(int *)0); }
439
440/* ./base/lib_flash.c */
441
Steve Kondikae271bc2015-11-15 02:50:53 +0100442#undef flash_sp
443int flash_sp(
444 SCREEN *sp)
445 { return(*(int *)0); }
446
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530447#undef flash
448int flash(void)
449 { return(*(int *)0); }
450
451/* ./lib_gen.c */
452
453#undef addch
Steve Kondikae271bc2015-11-15 02:50:53 +0100454int (addch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530455 const chtype z)
456 { return(*(int *)0); }
457
458#undef addchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100459int (addchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530460 const chtype *a1,
461 int z)
462 { return(*(int *)0); }
463
464#undef addchstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100465int (addchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530466 const chtype *z)
467 { return(*(int *)0); }
468
469#undef addnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100470int (addnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530471 const char *a1,
472 int z)
473 { return(*(int *)0); }
474
475#undef addstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100476int (addstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530477 const char *z)
478 { return(*(int *)0); }
479
480#undef attroff
Steve Kondikae271bc2015-11-15 02:50:53 +0100481int (attroff)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530482 NCURSES_ATTR_T z)
483 { return(*(int *)0); }
484
485#undef attron
Steve Kondikae271bc2015-11-15 02:50:53 +0100486int (attron)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530487 NCURSES_ATTR_T z)
488 { return(*(int *)0); }
489
490#undef attrset
Steve Kondikae271bc2015-11-15 02:50:53 +0100491int (attrset)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530492 NCURSES_ATTR_T z)
493 { return(*(int *)0); }
494
495#undef attr_get
Steve Kondikae271bc2015-11-15 02:50:53 +0100496int (attr_get)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530497 attr_t *a1,
498 short *a2,
499 void *z)
500 { return(*(int *)0); }
501
502#undef attr_off
Steve Kondikae271bc2015-11-15 02:50:53 +0100503int (attr_off)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530504 attr_t a1,
505 void *z)
506 { return(*(int *)0); }
507
508#undef attr_on
Steve Kondikae271bc2015-11-15 02:50:53 +0100509int (attr_on)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530510 attr_t a1,
511 void *z)
512 { return(*(int *)0); }
513
514#undef attr_set
Steve Kondikae271bc2015-11-15 02:50:53 +0100515int (attr_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530516 attr_t a1,
517 short a2,
518 void *z)
519 { return(*(int *)0); }
520
521#undef bkgd
Steve Kondikae271bc2015-11-15 02:50:53 +0100522int (bkgd)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530523 chtype z)
524 { return(*(int *)0); }
525
526#undef bkgdset
Steve Kondikae271bc2015-11-15 02:50:53 +0100527void (bkgdset)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530528 chtype z)
529 { /* void */ }
530
531#undef border
Steve Kondikae271bc2015-11-15 02:50:53 +0100532int (border)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530533 chtype a1,
534 chtype a2,
535 chtype a3,
536 chtype a4,
537 chtype a5,
538 chtype a6,
539 chtype a7,
540 chtype z)
541 { return(*(int *)0); }
542
543#undef box
Steve Kondikae271bc2015-11-15 02:50:53 +0100544int (box)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530545 WINDOW *a1,
546 chtype a2,
547 chtype z)
548 { return(*(int *)0); }
549
550#undef chgat
Steve Kondikae271bc2015-11-15 02:50:53 +0100551int (chgat)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530552 int a1,
553 attr_t a2,
554 short a3,
555 const void *z)
556 { return(*(int *)0); }
557
558#undef clear
Steve Kondikae271bc2015-11-15 02:50:53 +0100559int (clear)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530560 { return(*(int *)0); }
561
562#undef clrtobot
Steve Kondikae271bc2015-11-15 02:50:53 +0100563int (clrtobot)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530564 { return(*(int *)0); }
565
566#undef clrtoeol
Steve Kondikae271bc2015-11-15 02:50:53 +0100567int (clrtoeol)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530568 { return(*(int *)0); }
569
570#undef color_set
Steve Kondikae271bc2015-11-15 02:50:53 +0100571int (color_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530572 short a1,
573 void *z)
574 { return(*(int *)0); }
575
576#undef COLOR_PAIR
Steve Kondikae271bc2015-11-15 02:50:53 +0100577int (COLOR_PAIR)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530578 int z)
579 { return(*(int *)0); }
580
581#undef delch
Steve Kondikae271bc2015-11-15 02:50:53 +0100582int (delch)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530583 { return(*(int *)0); }
584
585#undef deleteln
Steve Kondikae271bc2015-11-15 02:50:53 +0100586int (deleteln)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530587 { return(*(int *)0); }
588
589#undef echochar
Steve Kondikae271bc2015-11-15 02:50:53 +0100590int (echochar)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530591 const chtype z)
592 { return(*(int *)0); }
593
594#undef erase
Steve Kondikae271bc2015-11-15 02:50:53 +0100595int (erase)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530596 { return(*(int *)0); }
597
598#undef getbkgd
Steve Kondikae271bc2015-11-15 02:50:53 +0100599chtype (getbkgd)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530600 WINDOW *z)
601 { return(*(chtype *)0); }
602
603#undef getch
Steve Kondikae271bc2015-11-15 02:50:53 +0100604int (getch)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530605 { return(*(int *)0); }
606
607#undef getnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100608int (getnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530609 char *a1,
610 int z)
611 { return(*(int *)0); }
612
613#undef getstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100614int (getstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530615 char *z)
616 { return(*(int *)0); }
617
618#undef hline
Steve Kondikae271bc2015-11-15 02:50:53 +0100619int (hline)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530620 chtype a1,
621 int z)
622 { return(*(int *)0); }
623
624#undef inch
Steve Kondikae271bc2015-11-15 02:50:53 +0100625chtype (inch)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530626 { return(*(chtype *)0); }
627
628#undef inchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100629int (inchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530630 chtype *a1,
631 int z)
632 { return(*(int *)0); }
633
634#undef inchstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100635int (inchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530636 chtype *z)
637 { return(*(int *)0); }
638
639#undef innstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100640int (innstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530641 char *a1,
642 int z)
643 { return(*(int *)0); }
644
645#undef insch
Steve Kondikae271bc2015-11-15 02:50:53 +0100646int (insch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530647 chtype z)
648 { return(*(int *)0); }
649
650#undef insdelln
Steve Kondikae271bc2015-11-15 02:50:53 +0100651int (insdelln)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530652 int z)
653 { return(*(int *)0); }
654
655#undef insertln
Steve Kondikae271bc2015-11-15 02:50:53 +0100656int (insertln)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530657 { return(*(int *)0); }
658
659#undef insnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100660int (insnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530661 const char *a1,
662 int z)
663 { return(*(int *)0); }
664
665#undef insstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100666int (insstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530667 const char *z)
668 { return(*(int *)0); }
669
670#undef instr
Steve Kondikae271bc2015-11-15 02:50:53 +0100671int (instr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530672 char *z)
673 { return(*(int *)0); }
674
675#undef move
Steve Kondikae271bc2015-11-15 02:50:53 +0100676int (move)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530677 int a1,
678 int z)
679 { return(*(int *)0); }
680
681#undef mvaddch
Steve Kondikae271bc2015-11-15 02:50:53 +0100682int (mvaddch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530683 int a1,
684 int a2,
685 const chtype z)
686 { return(*(int *)0); }
687
688#undef mvaddchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100689int (mvaddchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530690 int a1,
691 int a2,
692 const chtype *a3,
693 int z)
694 { return(*(int *)0); }
695
696#undef mvaddchstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100697int (mvaddchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530698 int a1,
699 int a2,
700 const chtype *z)
701 { return(*(int *)0); }
702
703#undef mvaddnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100704int (mvaddnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530705 int a1,
706 int a2,
707 const char *a3,
708 int z)
709 { return(*(int *)0); }
710
711#undef mvaddstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100712int (mvaddstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530713 int a1,
714 int a2,
715 const char *z)
716 { return(*(int *)0); }
717
718#undef mvchgat
Steve Kondikae271bc2015-11-15 02:50:53 +0100719int (mvchgat)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530720 int a1,
721 int a2,
722 int a3,
723 attr_t a4,
724 short a5,
725 const void *z)
726 { return(*(int *)0); }
727
728#undef mvdelch
Steve Kondikae271bc2015-11-15 02:50:53 +0100729int (mvdelch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530730 int a1,
731 int z)
732 { return(*(int *)0); }
733
734#undef mvgetch
Steve Kondikae271bc2015-11-15 02:50:53 +0100735int (mvgetch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530736 int a1,
737 int z)
738 { return(*(int *)0); }
739
740#undef mvgetnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100741int (mvgetnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530742 int a1,
743 int a2,
744 char *a3,
745 int z)
746 { return(*(int *)0); }
747
748#undef mvgetstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100749int (mvgetstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530750 int a1,
751 int a2,
752 char *z)
753 { return(*(int *)0); }
754
755#undef mvhline
Steve Kondikae271bc2015-11-15 02:50:53 +0100756int (mvhline)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530757 int a1,
758 int a2,
759 chtype a3,
760 int z)
761 { return(*(int *)0); }
762
763#undef mvinch
Steve Kondikae271bc2015-11-15 02:50:53 +0100764chtype (mvinch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530765 int a1,
766 int z)
767 { return(*(chtype *)0); }
768
769#undef mvinchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100770int (mvinchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530771 int a1,
772 int a2,
773 chtype *a3,
774 int z)
775 { return(*(int *)0); }
776
777#undef mvinchstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100778int (mvinchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530779 int a1,
780 int a2,
781 chtype *z)
782 { return(*(int *)0); }
783
784#undef mvinnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100785int (mvinnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530786 int a1,
787 int a2,
788 char *a3,
789 int z)
790 { return(*(int *)0); }
791
792#undef mvinsch
Steve Kondikae271bc2015-11-15 02:50:53 +0100793int (mvinsch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530794 int a1,
795 int a2,
796 chtype z)
797 { return(*(int *)0); }
798
799#undef mvinsnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100800int (mvinsnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530801 int a1,
802 int a2,
803 const char *a3,
804 int z)
805 { return(*(int *)0); }
806
807#undef mvinsstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100808int (mvinsstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530809 int a1,
810 int a2,
811 const char *z)
812 { return(*(int *)0); }
813
814#undef mvinstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100815int (mvinstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530816 int a1,
817 int a2,
818 char *z)
819 { return(*(int *)0); }
820
821#undef mvvline
Steve Kondikae271bc2015-11-15 02:50:53 +0100822int (mvvline)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530823 int a1,
824 int a2,
825 chtype a3,
826 int z)
827 { return(*(int *)0); }
828
829#undef mvwaddch
Steve Kondikae271bc2015-11-15 02:50:53 +0100830int (mvwaddch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530831 WINDOW *a1,
832 int a2,
833 int a3,
834 const chtype z)
835 { return(*(int *)0); }
836
837#undef mvwaddchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100838int (mvwaddchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530839 WINDOW *a1,
840 int a2,
841 int a3,
842 const chtype *a4,
843 int z)
844 { return(*(int *)0); }
845
846#undef mvwaddchstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100847int (mvwaddchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530848 WINDOW *a1,
849 int a2,
850 int a3,
851 const chtype *z)
852 { return(*(int *)0); }
853
854#undef mvwaddnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100855int (mvwaddnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530856 WINDOW *a1,
857 int a2,
858 int a3,
859 const char *a4,
860 int z)
861 { return(*(int *)0); }
862
863#undef mvwaddstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100864int (mvwaddstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530865 WINDOW *a1,
866 int a2,
867 int a3,
868 const char *z)
869 { return(*(int *)0); }
870
871#undef mvwchgat
Steve Kondikae271bc2015-11-15 02:50:53 +0100872int (mvwchgat)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530873 WINDOW *a1,
874 int a2,
875 int a3,
876 int a4,
877 attr_t a5,
878 short a6,
879 const void *z)
880 { return(*(int *)0); }
881
882#undef mvwdelch
Steve Kondikae271bc2015-11-15 02:50:53 +0100883int (mvwdelch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530884 WINDOW *a1,
885 int a2,
886 int z)
887 { return(*(int *)0); }
888
889#undef mvwgetch
Steve Kondikae271bc2015-11-15 02:50:53 +0100890int (mvwgetch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530891 WINDOW *a1,
892 int a2,
893 int z)
894 { return(*(int *)0); }
895
896#undef mvwgetnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100897int (mvwgetnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530898 WINDOW *a1,
899 int a2,
900 int a3,
901 char *a4,
902 int z)
903 { return(*(int *)0); }
904
905#undef mvwgetstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100906int (mvwgetstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530907 WINDOW *a1,
908 int a2,
909 int a3,
910 char *z)
911 { return(*(int *)0); }
912
913#undef mvwhline
Steve Kondikae271bc2015-11-15 02:50:53 +0100914int (mvwhline)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530915 WINDOW *a1,
916 int a2,
917 int a3,
918 chtype a4,
919 int z)
920 { return(*(int *)0); }
921
922#undef mvwinch
Steve Kondikae271bc2015-11-15 02:50:53 +0100923chtype (mvwinch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530924 WINDOW *a1,
925 int a2,
926 int z)
927 { return(*(chtype *)0); }
928
929#undef mvwinchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100930int (mvwinchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530931 WINDOW *a1,
932 int a2,
933 int a3,
934 chtype *a4,
935 int z)
936 { return(*(int *)0); }
937
938#undef mvwinchstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100939int (mvwinchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530940 WINDOW *a1,
941 int a2,
942 int a3,
943 chtype *z)
944 { return(*(int *)0); }
945
946#undef mvwinnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100947int (mvwinnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530948 WINDOW *a1,
949 int a2,
950 int a3,
951 char *a4,
952 int z)
953 { return(*(int *)0); }
954
955#undef mvwinsch
Steve Kondikae271bc2015-11-15 02:50:53 +0100956int (mvwinsch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530957 WINDOW *a1,
958 int a2,
959 int a3,
960 chtype z)
961 { return(*(int *)0); }
962
963#undef mvwinsnstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100964int (mvwinsnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530965 WINDOW *a1,
966 int a2,
967 int a3,
968 const char *a4,
969 int z)
970 { return(*(int *)0); }
971
972#undef mvwinsstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100973int (mvwinsstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530974 WINDOW *a1,
975 int a2,
976 int a3,
977 const char *z)
978 { return(*(int *)0); }
979
980#undef mvwinstr
Steve Kondikae271bc2015-11-15 02:50:53 +0100981int (mvwinstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530982 WINDOW *a1,
983 int a2,
984 int a3,
985 char *z)
986 { return(*(int *)0); }
987
988#undef mvwvline
Steve Kondikae271bc2015-11-15 02:50:53 +0100989int (mvwvline)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530990 WINDOW *a1,
991 int a2,
992 int a3,
993 chtype a4,
994 int z)
995 { return(*(int *)0); }
996
997#undef PAIR_NUMBER
Steve Kondikae271bc2015-11-15 02:50:53 +0100998int (PAIR_NUMBER)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530999 int z)
1000 { return(*(int *)0); }
1001
1002#undef redrawwin
Steve Kondikae271bc2015-11-15 02:50:53 +01001003int (redrawwin)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301004 WINDOW *z)
1005 { return(*(int *)0); }
1006
1007#undef refresh
Steve Kondikae271bc2015-11-15 02:50:53 +01001008int (refresh)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301009 { return(*(int *)0); }
1010
1011#undef scrl
Steve Kondikae271bc2015-11-15 02:50:53 +01001012int (scrl)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301013 int z)
1014 { return(*(int *)0); }
1015
1016#undef scroll
Steve Kondikae271bc2015-11-15 02:50:53 +01001017int (scroll)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301018 WINDOW *z)
1019 { return(*(int *)0); }
1020
1021#undef setscrreg
Steve Kondikae271bc2015-11-15 02:50:53 +01001022int (setscrreg)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301023 int a1,
1024 int z)
1025 { return(*(int *)0); }
1026
1027#undef slk_attr_off
Steve Kondikae271bc2015-11-15 02:50:53 +01001028int (slk_attr_off)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301029 const attr_t a1,
1030 void *z)
1031 { return(*(int *)0); }
1032
1033#undef slk_attr_on
Steve Kondikae271bc2015-11-15 02:50:53 +01001034int (slk_attr_on)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301035 attr_t a1,
1036 void *z)
1037 { return(*(int *)0); }
1038
1039#undef standout
Steve Kondikae271bc2015-11-15 02:50:53 +01001040int (standout)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301041 { return(*(int *)0); }
1042
1043#undef standend
Steve Kondikae271bc2015-11-15 02:50:53 +01001044int (standend)(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301045 { return(*(int *)0); }
1046
1047#undef timeout
Steve Kondikae271bc2015-11-15 02:50:53 +01001048void (timeout)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301049 int z)
1050 { /* void */ }
1051
1052#undef touchline
Steve Kondikae271bc2015-11-15 02:50:53 +01001053int (touchline)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301054 WINDOW *a1,
1055 int a2,
1056 int z)
1057 { return(*(int *)0); }
1058
1059#undef touchwin
Steve Kondikae271bc2015-11-15 02:50:53 +01001060int (touchwin)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301061 WINDOW *z)
1062 { return(*(int *)0); }
1063
1064#undef untouchwin
Steve Kondikae271bc2015-11-15 02:50:53 +01001065int (untouchwin)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301066 WINDOW *z)
1067 { return(*(int *)0); }
1068
1069#undef vline
Steve Kondikae271bc2015-11-15 02:50:53 +01001070int (vline)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301071 chtype a1,
1072 int z)
1073 { return(*(int *)0); }
1074
1075#undef vw_printw
Steve Kondikae271bc2015-11-15 02:50:53 +01001076int (vw_printw)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301077 WINDOW *a1,
1078 const char *a2,
1079 va_list z)
1080 { return(*(int *)0); }
1081
1082#undef vw_scanw
Steve Kondikae271bc2015-11-15 02:50:53 +01001083int (vw_scanw)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301084 WINDOW *a1,
Steve Kondikae271bc2015-11-15 02:50:53 +01001085 const char *a2,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301086 va_list z)
1087 { return(*(int *)0); }
1088
1089#undef waddchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001090int (waddchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301091 WINDOW *a1,
1092 const chtype *z)
1093 { return(*(int *)0); }
1094
1095#undef waddstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001096int (waddstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301097 WINDOW *a1,
1098 const char *z)
1099 { return(*(int *)0); }
1100
1101#undef wattron
Steve Kondikae271bc2015-11-15 02:50:53 +01001102int (wattron)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301103 WINDOW *a1,
1104 int z)
1105 { return(*(int *)0); }
1106
1107#undef wattroff
Steve Kondikae271bc2015-11-15 02:50:53 +01001108int (wattroff)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301109 WINDOW *a1,
1110 int z)
1111 { return(*(int *)0); }
1112
1113#undef wattrset
Steve Kondikae271bc2015-11-15 02:50:53 +01001114int (wattrset)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301115 WINDOW *a1,
1116 int z)
1117 { return(*(int *)0); }
1118
1119#undef wattr_get
Steve Kondikae271bc2015-11-15 02:50:53 +01001120int (wattr_get)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301121 WINDOW *a1,
1122 attr_t *a2,
1123 short *a3,
1124 void *z)
1125 { return(*(int *)0); }
1126
1127#undef wattr_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001128int (wattr_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301129 WINDOW *a1,
1130 attr_t a2,
1131 short a3,
1132 void *z)
1133 { return(*(int *)0); }
1134
1135#undef wdeleteln
Steve Kondikae271bc2015-11-15 02:50:53 +01001136int (wdeleteln)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301137 WINDOW *z)
1138 { return(*(int *)0); }
1139
1140#undef wgetstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001141int (wgetstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301142 WINDOW *a1,
1143 char *z)
1144 { return(*(int *)0); }
1145
1146#undef winchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001147int (winchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301148 WINDOW *a1,
1149 chtype *z)
1150 { return(*(int *)0); }
1151
1152#undef winsertln
Steve Kondikae271bc2015-11-15 02:50:53 +01001153int (winsertln)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301154 WINDOW *z)
1155 { return(*(int *)0); }
1156
1157#undef winsstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001158int (winsstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301159 WINDOW *a1,
1160 const char *z)
1161 { return(*(int *)0); }
1162
1163#undef winstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001164int (winstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301165 WINDOW *a1,
1166 char *z)
1167 { return(*(int *)0); }
1168
1169#undef wstandout
Steve Kondikae271bc2015-11-15 02:50:53 +01001170int (wstandout)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301171 WINDOW *z)
1172 { return(*(int *)0); }
1173
1174#undef wstandend
Steve Kondikae271bc2015-11-15 02:50:53 +01001175int (wstandend)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301176 WINDOW *z)
1177 { return(*(int *)0); }
1178
1179#undef getattrs
Steve Kondikae271bc2015-11-15 02:50:53 +01001180int (getattrs)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301181 const WINDOW *z)
1182 { return(*(int *)0); }
1183
1184#undef getcurx
Steve Kondikae271bc2015-11-15 02:50:53 +01001185int (getcurx)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301186 const WINDOW *z)
1187 { return(*(int *)0); }
1188
1189#undef getcury
Steve Kondikae271bc2015-11-15 02:50:53 +01001190int (getcury)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301191 const WINDOW *z)
1192 { return(*(int *)0); }
1193
1194#undef getbegx
Steve Kondikae271bc2015-11-15 02:50:53 +01001195int (getbegx)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301196 const WINDOW *z)
1197 { return(*(int *)0); }
1198
1199#undef getbegy
Steve Kondikae271bc2015-11-15 02:50:53 +01001200int (getbegy)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301201 const WINDOW *z)
1202 { return(*(int *)0); }
1203
1204#undef getmaxx
Steve Kondikae271bc2015-11-15 02:50:53 +01001205int (getmaxx)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301206 const WINDOW *z)
1207 { return(*(int *)0); }
1208
1209#undef getmaxy
Steve Kondikae271bc2015-11-15 02:50:53 +01001210int (getmaxy)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301211 const WINDOW *z)
1212 { return(*(int *)0); }
1213
1214#undef getparx
Steve Kondikae271bc2015-11-15 02:50:53 +01001215int (getparx)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301216 const WINDOW *z)
1217 { return(*(int *)0); }
1218
1219#undef getpary
Steve Kondikae271bc2015-11-15 02:50:53 +01001220int (getpary)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301221 const WINDOW *z)
1222 { return(*(int *)0); }
1223
1224#undef wgetparent
Steve Kondikae271bc2015-11-15 02:50:53 +01001225WINDOW *(wgetparent)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301226 const WINDOW *z)
1227 { return(*(WINDOW **)0); }
1228
1229#undef is_cleared
Steve Kondikae271bc2015-11-15 02:50:53 +01001230NCURSES_BOOL (is_cleared)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301231 const WINDOW *z)
1232 { return(*(NCURSES_BOOL *)0); }
1233
1234#undef is_idcok
Steve Kondikae271bc2015-11-15 02:50:53 +01001235NCURSES_BOOL (is_idcok)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301236 const WINDOW *z)
1237 { return(*(NCURSES_BOOL *)0); }
1238
1239#undef is_idlok
Steve Kondikae271bc2015-11-15 02:50:53 +01001240NCURSES_BOOL (is_idlok)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301241 const WINDOW *z)
1242 { return(*(NCURSES_BOOL *)0); }
1243
1244#undef is_immedok
Steve Kondikae271bc2015-11-15 02:50:53 +01001245NCURSES_BOOL (is_immedok)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301246 const WINDOW *z)
1247 { return(*(NCURSES_BOOL *)0); }
1248
1249#undef is_keypad
Steve Kondikae271bc2015-11-15 02:50:53 +01001250NCURSES_BOOL (is_keypad)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301251 const WINDOW *z)
1252 { return(*(NCURSES_BOOL *)0); }
1253
1254#undef is_leaveok
Steve Kondikae271bc2015-11-15 02:50:53 +01001255NCURSES_BOOL (is_leaveok)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301256 const WINDOW *z)
1257 { return(*(NCURSES_BOOL *)0); }
1258
1259#undef is_nodelay
Steve Kondikae271bc2015-11-15 02:50:53 +01001260NCURSES_BOOL (is_nodelay)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301261 const WINDOW *z)
1262 { return(*(NCURSES_BOOL *)0); }
1263
1264#undef is_notimeout
Steve Kondikae271bc2015-11-15 02:50:53 +01001265NCURSES_BOOL (is_notimeout)(
1266 const WINDOW *z)
1267 { return(*(NCURSES_BOOL *)0); }
1268
1269#undef is_pad
1270NCURSES_BOOL (is_pad)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301271 const WINDOW *z)
1272 { return(*(NCURSES_BOOL *)0); }
1273
1274#undef is_scrollok
Steve Kondikae271bc2015-11-15 02:50:53 +01001275NCURSES_BOOL (is_scrollok)(
1276 const WINDOW *z)
1277 { return(*(NCURSES_BOOL *)0); }
1278
1279#undef is_subwin
1280NCURSES_BOOL (is_subwin)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301281 const WINDOW *z)
1282 { return(*(NCURSES_BOOL *)0); }
1283
1284#undef is_syncok
Steve Kondikae271bc2015-11-15 02:50:53 +01001285NCURSES_BOOL (is_syncok)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301286 const WINDOW *z)
1287 { return(*(NCURSES_BOOL *)0); }
1288
Steve Kondikae271bc2015-11-15 02:50:53 +01001289#undef wgetdelay
1290int (wgetdelay)(
1291 const WINDOW *z)
1292 { return(*(int *)0); }
1293
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301294#undef wgetscrreg
Steve Kondikae271bc2015-11-15 02:50:53 +01001295int (wgetscrreg)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301296 const WINDOW *a1,
1297 int *a2,
1298 int *z)
1299 { return(*(int *)0); }
1300
1301#undef add_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001302int (add_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301303 const cchar_t *z)
1304 { return(*(int *)0); }
1305
1306#undef add_wchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001307int (add_wchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301308 const cchar_t *a1,
1309 int z)
1310 { return(*(int *)0); }
1311
1312#undef add_wchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001313int (add_wchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301314 const cchar_t *z)
1315 { return(*(int *)0); }
1316
1317#undef addnwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001318int (addnwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301319 const wchar_t *a1,
1320 int z)
1321 { return(*(int *)0); }
1322
1323#undef addwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001324int (addwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301325 const wchar_t *z)
1326 { return(*(int *)0); }
1327
1328#undef bkgrnd
Steve Kondikae271bc2015-11-15 02:50:53 +01001329int (bkgrnd)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301330 const cchar_t *z)
1331 { return(*(int *)0); }
1332
1333#undef bkgrndset
Steve Kondikae271bc2015-11-15 02:50:53 +01001334void (bkgrndset)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301335 const cchar_t *z)
1336 { /* void */ }
1337
1338#undef border_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001339int (border_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301340 const cchar_t *a1,
1341 const cchar_t *a2,
1342 const cchar_t *a3,
1343 const cchar_t *a4,
1344 const cchar_t *a5,
1345 const cchar_t *a6,
1346 const cchar_t *a7,
1347 const cchar_t *z)
1348 { return(*(int *)0); }
1349
1350#undef box_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001351int (box_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301352 WINDOW *a1,
1353 const cchar_t *a2,
1354 const cchar_t *z)
1355 { return(*(int *)0); }
1356
1357#undef echo_wchar
Steve Kondikae271bc2015-11-15 02:50:53 +01001358int (echo_wchar)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301359 const cchar_t *z)
1360 { return(*(int *)0); }
1361
1362#undef get_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001363int (get_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301364 wint_t *z)
1365 { return(*(int *)0); }
1366
1367#undef get_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001368int (get_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301369 wint_t *z)
1370 { return(*(int *)0); }
1371
1372#undef getbkgrnd
Steve Kondikae271bc2015-11-15 02:50:53 +01001373int (getbkgrnd)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301374 cchar_t *z)
1375 { return(*(int *)0); }
1376
1377#undef getn_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001378int (getn_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301379 wint_t *a1,
1380 int z)
1381 { return(*(int *)0); }
1382
1383#undef hline_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001384int (hline_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301385 const cchar_t *a1,
1386 int z)
1387 { return(*(int *)0); }
1388
1389#undef in_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001390int (in_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301391 cchar_t *z)
1392 { return(*(int *)0); }
1393
1394#undef in_wchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001395int (in_wchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301396 cchar_t *a1,
1397 int z)
1398 { return(*(int *)0); }
1399
1400#undef in_wchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001401int (in_wchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301402 cchar_t *z)
1403 { return(*(int *)0); }
1404
1405#undef innwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001406int (innwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301407 wchar_t *a1,
1408 int z)
1409 { return(*(int *)0); }
1410
1411#undef ins_nwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001412int (ins_nwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301413 const wchar_t *a1,
1414 int z)
1415 { return(*(int *)0); }
1416
1417#undef ins_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001418int (ins_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301419 const cchar_t *z)
1420 { return(*(int *)0); }
1421
1422#undef ins_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001423int (ins_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301424 const wchar_t *z)
1425 { return(*(int *)0); }
1426
1427#undef inwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001428int (inwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301429 wchar_t *z)
1430 { return(*(int *)0); }
1431
1432#undef mvadd_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001433int (mvadd_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301434 int a1,
1435 int a2,
1436 const cchar_t *z)
1437 { return(*(int *)0); }
1438
1439#undef mvadd_wchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001440int (mvadd_wchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301441 int a1,
1442 int a2,
1443 const cchar_t *a3,
1444 int z)
1445 { return(*(int *)0); }
1446
1447#undef mvadd_wchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001448int (mvadd_wchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301449 int a1,
1450 int a2,
1451 const cchar_t *z)
1452 { return(*(int *)0); }
1453
1454#undef mvaddnwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001455int (mvaddnwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301456 int a1,
1457 int a2,
1458 const wchar_t *a3,
1459 int z)
1460 { return(*(int *)0); }
1461
1462#undef mvaddwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001463int (mvaddwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301464 int a1,
1465 int a2,
1466 const wchar_t *z)
1467 { return(*(int *)0); }
1468
1469#undef mvget_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001470int (mvget_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301471 int a1,
1472 int a2,
1473 wint_t *z)
1474 { return(*(int *)0); }
1475
1476#undef mvget_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001477int (mvget_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301478 int a1,
1479 int a2,
1480 wint_t *z)
1481 { return(*(int *)0); }
1482
1483#undef mvgetn_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001484int (mvgetn_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301485 int a1,
1486 int a2,
1487 wint_t *a3,
1488 int z)
1489 { return(*(int *)0); }
1490
1491#undef mvhline_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001492int (mvhline_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301493 int a1,
1494 int a2,
1495 const cchar_t *a3,
1496 int z)
1497 { return(*(int *)0); }
1498
1499#undef mvin_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001500int (mvin_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301501 int a1,
1502 int a2,
1503 cchar_t *z)
1504 { return(*(int *)0); }
1505
1506#undef mvin_wchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001507int (mvin_wchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301508 int a1,
1509 int a2,
1510 cchar_t *a3,
1511 int z)
1512 { return(*(int *)0); }
1513
1514#undef mvin_wchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001515int (mvin_wchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301516 int a1,
1517 int a2,
1518 cchar_t *z)
1519 { return(*(int *)0); }
1520
1521#undef mvinnwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001522int (mvinnwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301523 int a1,
1524 int a2,
1525 wchar_t *a3,
1526 int z)
1527 { return(*(int *)0); }
1528
1529#undef mvins_nwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001530int (mvins_nwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301531 int a1,
1532 int a2,
1533 const wchar_t *a3,
1534 int z)
1535 { return(*(int *)0); }
1536
1537#undef mvins_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001538int (mvins_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301539 int a1,
1540 int a2,
1541 const cchar_t *z)
1542 { return(*(int *)0); }
1543
1544#undef mvins_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001545int (mvins_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301546 int a1,
1547 int a2,
1548 const wchar_t *z)
1549 { return(*(int *)0); }
1550
1551#undef mvinwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001552int (mvinwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301553 int a1,
1554 int a2,
1555 wchar_t *z)
1556 { return(*(int *)0); }
1557
1558#undef mvvline_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001559int (mvvline_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301560 int a1,
1561 int a2,
1562 const cchar_t *a3,
1563 int z)
1564 { return(*(int *)0); }
1565
1566#undef mvwadd_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001567int (mvwadd_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301568 WINDOW *a1,
1569 int a2,
1570 int a3,
1571 const cchar_t *z)
1572 { return(*(int *)0); }
1573
1574#undef mvwadd_wchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001575int (mvwadd_wchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301576 WINDOW *a1,
1577 int a2,
1578 int a3,
1579 const cchar_t *a4,
1580 int z)
1581 { return(*(int *)0); }
1582
1583#undef mvwadd_wchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001584int (mvwadd_wchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301585 WINDOW *a1,
1586 int a2,
1587 int a3,
1588 const cchar_t *z)
1589 { return(*(int *)0); }
1590
1591#undef mvwaddnwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001592int (mvwaddnwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301593 WINDOW *a1,
1594 int a2,
1595 int a3,
1596 const wchar_t *a4,
1597 int z)
1598 { return(*(int *)0); }
1599
1600#undef mvwaddwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001601int (mvwaddwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301602 WINDOW *a1,
1603 int a2,
1604 int a3,
1605 const wchar_t *z)
1606 { return(*(int *)0); }
1607
1608#undef mvwget_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001609int (mvwget_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301610 WINDOW *a1,
1611 int a2,
1612 int a3,
1613 wint_t *z)
1614 { return(*(int *)0); }
1615
1616#undef mvwget_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001617int (mvwget_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301618 WINDOW *a1,
1619 int a2,
1620 int a3,
1621 wint_t *z)
1622 { return(*(int *)0); }
1623
1624#undef mvwgetn_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001625int (mvwgetn_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301626 WINDOW *a1,
1627 int a2,
1628 int a3,
1629 wint_t *a4,
1630 int z)
1631 { return(*(int *)0); }
1632
1633#undef mvwhline_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001634int (mvwhline_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301635 WINDOW *a1,
1636 int a2,
1637 int a3,
1638 const cchar_t *a4,
1639 int z)
1640 { return(*(int *)0); }
1641
1642#undef mvwin_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001643int (mvwin_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301644 WINDOW *a1,
1645 int a2,
1646 int a3,
1647 cchar_t *z)
1648 { return(*(int *)0); }
1649
1650#undef mvwin_wchnstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001651int (mvwin_wchnstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301652 WINDOW *a1,
1653 int a2,
1654 int a3,
1655 cchar_t *a4,
1656 int z)
1657 { return(*(int *)0); }
1658
1659#undef mvwin_wchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001660int (mvwin_wchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301661 WINDOW *a1,
1662 int a2,
1663 int a3,
1664 cchar_t *z)
1665 { return(*(int *)0); }
1666
1667#undef mvwinnwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001668int (mvwinnwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301669 WINDOW *a1,
1670 int a2,
1671 int a3,
1672 wchar_t *a4,
1673 int z)
1674 { return(*(int *)0); }
1675
1676#undef mvwins_nwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001677int (mvwins_nwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301678 WINDOW *a1,
1679 int a2,
1680 int a3,
1681 const wchar_t *a4,
1682 int z)
1683 { return(*(int *)0); }
1684
1685#undef mvwins_wch
Steve Kondikae271bc2015-11-15 02:50:53 +01001686int (mvwins_wch)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301687 WINDOW *a1,
1688 int a2,
1689 int a3,
1690 const cchar_t *z)
1691 { return(*(int *)0); }
1692
1693#undef mvwins_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001694int (mvwins_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301695 WINDOW *a1,
1696 int a2,
1697 int a3,
1698 const wchar_t *z)
1699 { return(*(int *)0); }
1700
1701#undef mvwinwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001702int (mvwinwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301703 WINDOW *a1,
1704 int a2,
1705 int a3,
1706 wchar_t *z)
1707 { return(*(int *)0); }
1708
1709#undef mvwvline_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001710int (mvwvline_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301711 WINDOW *a1,
1712 int a2,
1713 int a3,
1714 const cchar_t *a4,
1715 int z)
1716 { return(*(int *)0); }
1717
1718#undef vline_set
Steve Kondikae271bc2015-11-15 02:50:53 +01001719int (vline_set)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301720 const cchar_t *a1,
1721 int z)
1722 { return(*(int *)0); }
1723
1724#undef wadd_wchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001725int (wadd_wchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301726 WINDOW *a1,
1727 const cchar_t *z)
1728 { return(*(int *)0); }
1729
1730#undef waddwstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001731int (waddwstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301732 WINDOW *a1,
1733 const wchar_t *z)
1734 { return(*(int *)0); }
1735
1736#undef wget_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001737int (wget_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301738 WINDOW *a1,
1739 wint_t *z)
1740 { return(*(int *)0); }
1741
1742#undef wgetbkgrnd
Steve Kondikae271bc2015-11-15 02:50:53 +01001743int (wgetbkgrnd)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301744 WINDOW *a1,
1745 cchar_t *z)
1746 { return(*(int *)0); }
1747
1748#undef win_wchstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001749int (win_wchstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301750 WINDOW *a1,
1751 cchar_t *z)
1752 { return(*(int *)0); }
1753
1754#undef wins_wstr
Steve Kondikae271bc2015-11-15 02:50:53 +01001755int (wins_wstr)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301756 WINDOW *a1,
1757 const wchar_t *z)
1758 { return(*(int *)0); }
1759
1760#undef mouse_trafo
Steve Kondikae271bc2015-11-15 02:50:53 +01001761NCURSES_BOOL (mouse_trafo)(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301762 int *a1,
1763 int *a2,
1764 NCURSES_BOOL z)
1765 { return(*(NCURSES_BOOL *)0); }
1766
1767/* ./base/lib_getch.c */
1768
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301769#undef ESCDELAY
1770int ESCDELAY;
1771
Steve Kondikae271bc2015-11-15 02:50:53 +01001772#undef set_escdelay_sp
1773int set_escdelay_sp(
1774 SCREEN *sp,
1775 int value)
1776 { return(*(int *)0); }
1777
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301778#undef set_escdelay
1779int set_escdelay(
1780 int value)
1781 { return(*(int *)0); }
1782
Steve Kondikae271bc2015-11-15 02:50:53 +01001783#undef get_escdelay_sp
1784int get_escdelay_sp(
1785 SCREEN *sp)
1786 { return(*(int *)0); }
1787
1788#undef get_escdelay
1789int get_escdelay(void)
1790 { return(*(int *)0); }
1791
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301792#undef _nc_wgetch
1793int _nc_wgetch(
1794 WINDOW *win,
Steve Kondikae271bc2015-11-15 02:50:53 +01001795 int *result,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301796 int use_meta)
1797 { return(*(int *)0); }
1798
1799#undef wgetch
1800int wgetch(
1801 WINDOW *win)
1802 { return(*(int *)0); }
1803
1804/* ./base/lib_getstr.c */
1805
1806#undef wgetnstr
1807int wgetnstr(
1808 WINDOW *win,
1809 char *str,
1810 int maxlen)
1811 { return(*(int *)0); }
1812
1813/* ./base/lib_hline.c */
1814
1815#undef whline
1816int whline(
1817 WINDOW *win,
1818 chtype ch,
1819 int n)
1820 { return(*(int *)0); }
1821
1822/* ./base/lib_immedok.c */
1823
1824#undef immedok
1825void immedok(
1826 WINDOW *win,
1827 NCURSES_BOOL flag)
1828 { /* void */ }
1829
1830/* ./base/lib_inchstr.c */
1831
1832#undef winchnstr
1833int winchnstr(
1834 WINDOW *win,
1835 chtype *str,
1836 int n)
1837 { return(*(int *)0); }
1838
1839/* ./base/lib_initscr.c */
1840
1841#undef initscr
1842WINDOW *initscr(void)
1843 { return(*(WINDOW **)0); }
1844
1845/* ./base/lib_insch.c */
1846
1847#undef _nc_insert_ch
1848int _nc_insert_ch(
Steve Kondikae271bc2015-11-15 02:50:53 +01001849 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301850 WINDOW *win,
1851 chtype ch)
1852 { return(*(int *)0); }
1853
1854#undef winsch
1855int winsch(
1856 WINDOW *win,
1857 chtype c)
1858 { return(*(int *)0); }
1859
1860/* ./base/lib_insdel.c */
1861
1862#undef winsdelln
1863int winsdelln(
1864 WINDOW *win,
1865 int n)
1866 { return(*(int *)0); }
1867
1868/* ./base/lib_insnstr.c */
1869
1870#undef winsnstr
1871int winsnstr(
1872 WINDOW *win,
1873 const char *s,
1874 int n)
1875 { return(*(int *)0); }
1876
1877/* ./base/lib_instr.c */
1878
1879#undef winnstr
1880int winnstr(
1881 WINDOW *win,
1882 char *str,
1883 int n)
1884 { return(*(int *)0); }
1885
1886/* ./base/lib_isendwin.c */
1887
Steve Kondikae271bc2015-11-15 02:50:53 +01001888#undef isendwin_sp
1889NCURSES_BOOL isendwin_sp(
1890 SCREEN *sp)
1891 { return(*(NCURSES_BOOL *)0); }
1892
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301893#undef isendwin
1894NCURSES_BOOL isendwin(void)
1895 { return(*(NCURSES_BOOL *)0); }
1896
1897/* ./base/lib_leaveok.c */
1898
1899#undef leaveok
1900int leaveok(
1901 WINDOW *win,
1902 NCURSES_BOOL flag)
1903 { return(*(int *)0); }
1904
1905/* ./base/lib_mouse.c */
1906
Steve Kondikae271bc2015-11-15 02:50:53 +01001907typedef struct {
1908 int nerror;
1909 int nparam;
1910 int params[9];
1911 int final;
1912} SGR_DATA;
1913
1914#undef getmouse_sp
1915int getmouse_sp(
1916 SCREEN *sp,
1917 MEVENT *aevent)
1918 { return(*(int *)0); }
1919
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301920#undef getmouse
1921int getmouse(
1922 MEVENT *aevent)
1923 { return(*(int *)0); }
1924
Steve Kondikae271bc2015-11-15 02:50:53 +01001925#undef ungetmouse_sp
1926int ungetmouse_sp(
1927 SCREEN *sp,
1928 MEVENT *aevent)
1929 { return(*(int *)0); }
1930
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301931#undef ungetmouse
1932int ungetmouse(
1933 MEVENT *aevent)
1934 { return(*(int *)0); }
1935
Steve Kondikae271bc2015-11-15 02:50:53 +01001936#undef mousemask_sp
1937mmask_t mousemask_sp(
1938 SCREEN *sp,
1939 mmask_t newmask,
1940 mmask_t *oldmask)
1941 { return(*(mmask_t *)0); }
1942
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301943#undef mousemask
1944mmask_t mousemask(
1945 mmask_t newmask,
1946 mmask_t *oldmask)
1947 { return(*(mmask_t *)0); }
1948
1949#undef wenclose
1950NCURSES_BOOL wenclose(
1951 const WINDOW *win,
1952 int y,
1953 int x)
1954 { return(*(NCURSES_BOOL *)0); }
1955
Steve Kondikae271bc2015-11-15 02:50:53 +01001956#undef mouseinterval_sp
1957int mouseinterval_sp(
1958 SCREEN *sp,
1959 int maxclick)
1960 { return(*(int *)0); }
1961
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301962#undef mouseinterval
1963int mouseinterval(
1964 int maxclick)
1965 { return(*(int *)0); }
1966
1967#undef _nc_has_mouse
Steve Kondikae271bc2015-11-15 02:50:53 +01001968NCURSES_BOOL _nc_has_mouse(
1969 SCREEN *sp)
1970 { return(*(NCURSES_BOOL *)0); }
1971
1972#undef has_mouse_sp
1973NCURSES_BOOL has_mouse_sp(
1974 SCREEN *sp)
1975 { return(*(NCURSES_BOOL *)0); }
1976
1977#undef has_mouse
1978NCURSES_BOOL has_mouse(void)
1979 { return(*(NCURSES_BOOL *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301980
1981#undef wmouse_trafo
1982NCURSES_BOOL wmouse_trafo(
1983 const WINDOW *win,
1984 int *pY,
1985 int *pX,
1986 NCURSES_BOOL to_screen)
1987 { return(*(NCURSES_BOOL *)0); }
1988
1989/* ./base/lib_move.c */
1990
1991#undef wmove
1992int wmove(
1993 WINDOW *win,
1994 int y,
1995 int x)
1996 { return(*(int *)0); }
1997
1998/* ./tty/lib_mvcur.c */
1999
Steve Kondikae271bc2015-11-15 02:50:53 +01002000#undef _nc_msec_cost_sp
2001int _nc_msec_cost_sp(
2002 SCREEN *sp,
2003 const char *const cap,
2004 int affcnt)
2005 { return(*(int *)0); }
2006
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302007#undef _nc_msec_cost
2008int _nc_msec_cost(
2009 const char *const cap,
2010 int affcnt)
2011 { return(*(int *)0); }
2012
Steve Kondikae271bc2015-11-15 02:50:53 +01002013#undef _nc_mvcur_resume_sp
2014void _nc_mvcur_resume_sp(
2015 SCREEN *sp)
2016 { /* void */ }
2017
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302018#undef _nc_mvcur_resume
2019void _nc_mvcur_resume(void)
2020 { /* void */ }
2021
Steve Kondikae271bc2015-11-15 02:50:53 +01002022#undef _nc_mvcur_init_sp
2023void _nc_mvcur_init_sp(
2024 SCREEN *sp)
2025 { /* void */ }
2026
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302027#undef _nc_mvcur_init
2028void _nc_mvcur_init(void)
2029 { /* void */ }
2030
Steve Kondikae271bc2015-11-15 02:50:53 +01002031#undef _nc_mvcur_wrap_sp
2032void _nc_mvcur_wrap_sp(
2033 SCREEN *sp)
2034 { /* void */ }
2035
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302036#undef _nc_mvcur_wrap
2037void _nc_mvcur_wrap(void)
2038 { /* void */ }
2039
Steve Kondikae271bc2015-11-15 02:50:53 +01002040#undef _nc_mvcur_sp
2041int _nc_mvcur_sp(
2042 SCREEN *sp,
2043 int yold,
2044 int xold,
2045 int ynew,
2046 int xnew)
2047 { return(*(int *)0); }
2048
2049#undef _nc_mvcur
2050int _nc_mvcur(
2051 int yold,
2052 int xold,
2053 int ynew,
2054 int xnew)
2055 { return(*(int *)0); }
2056
2057#undef mvcur_sp
2058int mvcur_sp(
2059 SCREEN *sp,
2060 int yold,
2061 int xold,
2062 int ynew,
2063 int xnew)
2064 { return(*(int *)0); }
2065
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302066#undef mvcur
2067int mvcur(
2068 int yold,
2069 int xold,
2070 int ynew,
2071 int xnew)
2072 { return(*(int *)0); }
2073
2074#undef _nc_optimize_enable
2075int _nc_optimize_enable;
2076
2077/* ./base/lib_mvwin.c */
2078
2079#undef mvwin
2080int mvwin(
2081 WINDOW *win,
2082 int by,
2083 int bx)
2084 { return(*(int *)0); }
2085
2086/* ./base/lib_newterm.c */
2087
Steve Kondikae271bc2015-11-15 02:50:53 +01002088#undef filter_sp
2089void filter_sp(
2090 SCREEN *sp)
2091 { /* void */ }
2092
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302093#undef filter
2094void filter(void)
2095 { /* void */ }
2096
Steve Kondikae271bc2015-11-15 02:50:53 +01002097#undef nofilter_sp
2098void nofilter_sp(
2099 SCREEN *sp)
2100 { /* void */ }
2101
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302102#undef nofilter
2103void nofilter(void)
2104 { /* void */ }
2105
Steve Kondikae271bc2015-11-15 02:50:53 +01002106#undef newterm_sp
2107SCREEN *newterm_sp(
2108 SCREEN *sp,
2109 const char *name,
2110 FILE *ofp,
2111 FILE *ifp)
2112 { return(*(SCREEN **)0); }
2113
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302114#undef newterm
2115SCREEN *newterm(
Steve Kondikae271bc2015-11-15 02:50:53 +01002116 const char *name,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302117 FILE *ofp,
2118 FILE *ifp)
2119 { return(*(SCREEN **)0); }
2120
2121/* ./base/lib_newwin.c */
2122
2123#undef _nc_freewin
2124int _nc_freewin(
2125 WINDOW *win)
2126 { return(*(int *)0); }
2127
Steve Kondikae271bc2015-11-15 02:50:53 +01002128#undef newwin_sp
2129WINDOW *newwin_sp(
2130 SCREEN *sp,
2131 int num_lines,
2132 int num_columns,
2133 int begy,
2134 int begx)
2135 { return(*(WINDOW **)0); }
2136
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302137#undef newwin
2138WINDOW *newwin(
2139 int num_lines,
2140 int num_columns,
2141 int begy,
2142 int begx)
2143 { return(*(WINDOW **)0); }
2144
2145#undef derwin
2146WINDOW *derwin(
2147 WINDOW *orig,
2148 int num_lines,
2149 int num_columns,
2150 int begy,
2151 int begx)
2152 { return(*(WINDOW **)0); }
2153
2154#undef subwin
2155WINDOW *subwin(
2156 WINDOW *w,
2157 int l,
2158 int c,
2159 int y,
2160 int x)
2161 { return(*(WINDOW **)0); }
2162
Steve Kondikae271bc2015-11-15 02:50:53 +01002163#undef _nc_makenew_sp
2164WINDOW *_nc_makenew_sp(
2165 SCREEN *sp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302166 int num_lines,
2167 int num_columns,
2168 int begy,
2169 int begx,
2170 int flags)
2171 { return(*(WINDOW **)0); }
2172
Steve Kondikae271bc2015-11-15 02:50:53 +01002173#undef _nc_curscr_of
2174WINDOW *_nc_curscr_of(
2175 SCREEN *sp)
2176 { return(*(WINDOW **)0); }
2177
2178#undef _nc_newscr_of
2179WINDOW *_nc_newscr_of(
2180 SCREEN *sp)
2181 { return(*(WINDOW **)0); }
2182
2183#undef _nc_stdscr_of
2184WINDOW *_nc_stdscr_of(
2185 SCREEN *sp)
2186 { return(*(WINDOW **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302187
2188/* ./base/lib_nl.c */
2189
Steve Kondikae271bc2015-11-15 02:50:53 +01002190#undef nl_sp
2191int nl_sp(
2192 SCREEN *sp)
2193 { return(*(int *)0); }
2194
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302195#undef nl
2196int nl(void)
2197 { return(*(int *)0); }
2198
Steve Kondikae271bc2015-11-15 02:50:53 +01002199#undef nonl_sp
2200int nonl_sp(
2201 SCREEN *sp)
2202 { return(*(int *)0); }
2203
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302204#undef nonl
2205int nonl(void)
2206 { return(*(int *)0); }
2207
2208/* ./base/lib_overlay.c */
2209
2210#undef overlay
2211int overlay(
2212 const WINDOW *win1,
2213 WINDOW *win2)
2214 { return(*(int *)0); }
2215
2216#undef overwrite
2217int overwrite(
2218 const WINDOW *win1,
2219 WINDOW *win2)
2220 { return(*(int *)0); }
2221
2222#undef copywin
2223int copywin(
2224 const WINDOW *src,
2225 WINDOW *dst,
2226 int sminrow,
2227 int smincol,
2228 int dminrow,
2229 int dmincol,
2230 int dmaxrow,
2231 int dmaxcol,
2232 int over)
2233 { return(*(int *)0); }
2234
2235/* ./base/lib_pad.c */
2236
Steve Kondikae271bc2015-11-15 02:50:53 +01002237#undef newpad_sp
2238WINDOW *newpad_sp(
2239 SCREEN *sp,
2240 int l,
2241 int c)
2242 { return(*(WINDOW **)0); }
2243
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302244#undef newpad
2245WINDOW *newpad(
2246 int l,
2247 int c)
2248 { return(*(WINDOW **)0); }
2249
2250#undef subpad
2251WINDOW *subpad(
2252 WINDOW *orig,
2253 int l,
2254 int c,
2255 int begy,
2256 int begx)
2257 { return(*(WINDOW **)0); }
2258
2259#undef prefresh
2260int prefresh(
2261 WINDOW *win,
2262 int pminrow,
2263 int pmincol,
2264 int sminrow,
2265 int smincol,
2266 int smaxrow,
2267 int smaxcol)
2268 { return(*(int *)0); }
2269
2270#undef pnoutrefresh
2271int pnoutrefresh(
2272 WINDOW *win,
2273 int pminrow,
2274 int pmincol,
2275 int sminrow,
2276 int smincol,
2277 int smaxrow,
2278 int smaxcol)
2279 { return(*(int *)0); }
2280
2281#undef pechochar
2282int pechochar(
2283 WINDOW *pad,
2284 const chtype ch)
2285 { return(*(int *)0); }
2286
2287/* ./base/lib_printw.c */
2288
2289#undef printw
2290int printw(
2291 const char *fmt,
2292 ...)
2293 { return(*(int *)0); }
2294
2295#undef wprintw
2296int wprintw(
2297 WINDOW *win,
2298 const char *fmt,
2299 ...)
2300 { return(*(int *)0); }
2301
2302#undef mvprintw
2303int mvprintw(
2304 int y,
2305 int x,
2306 const char *fmt,
2307 ...)
2308 { return(*(int *)0); }
2309
2310#undef mvwprintw
2311int mvwprintw(
2312 WINDOW *win,
2313 int y,
2314 int x,
2315 const char *fmt,
2316 ...)
2317 { return(*(int *)0); }
2318
2319#undef vwprintw
2320int vwprintw(
2321 WINDOW *win,
2322 const char *fmt,
2323 va_list argp)
2324 { return(*(int *)0); }
2325
2326/* ./base/lib_redrawln.c */
2327
2328#undef wredrawln
2329int wredrawln(
2330 WINDOW *win,
2331 int beg,
2332 int num)
2333 { return(*(int *)0); }
2334
2335/* ./base/lib_refresh.c */
2336
2337#undef wrefresh
2338int wrefresh(
2339 WINDOW *win)
2340 { return(*(int *)0); }
2341
2342#undef wnoutrefresh
2343int wnoutrefresh(
2344 WINDOW *win)
2345 { return(*(int *)0); }
2346
2347/* ./base/lib_restart.c */
2348
Steve Kondikae271bc2015-11-15 02:50:53 +01002349#undef restartterm_sp
2350int restartterm_sp(
2351 SCREEN *sp,
2352 const char *termp,
2353 int filenum,
2354 int *errret)
2355 { return(*(int *)0); }
2356
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302357#undef restartterm
2358int restartterm(
Steve Kondikae271bc2015-11-15 02:50:53 +01002359 const char *termp,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302360 int filenum,
2361 int *errret)
2362 { return(*(int *)0); }
2363
2364/* ./base/lib_scanw.c */
2365
2366#undef vwscanw
2367int vwscanw(
2368 WINDOW *win,
Steve Kondikae271bc2015-11-15 02:50:53 +01002369 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302370 va_list argp)
2371 { return(*(int *)0); }
2372
2373#undef scanw
2374int scanw(
Steve Kondikae271bc2015-11-15 02:50:53 +01002375 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302376 ...)
2377 { return(*(int *)0); }
2378
2379#undef wscanw
2380int wscanw(
2381 WINDOW *win,
Steve Kondikae271bc2015-11-15 02:50:53 +01002382 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302383 ...)
2384 { return(*(int *)0); }
2385
2386#undef mvscanw
2387int mvscanw(
2388 int y,
2389 int x,
Steve Kondikae271bc2015-11-15 02:50:53 +01002390 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302391 ...)
2392 { return(*(int *)0); }
2393
2394#undef mvwscanw
2395int mvwscanw(
2396 WINDOW *win,
2397 int y,
2398 int x,
Steve Kondikae271bc2015-11-15 02:50:53 +01002399 const char *fmt,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302400 ...)
2401 { return(*(int *)0); }
2402
2403/* ./base/lib_screen.c */
2404
Steve Kondikae271bc2015-11-15 02:50:53 +01002405typedef enum {
2406 pINT
2407 ,pSHORT
2408 ,pBOOL
2409 ,pATTR
2410 ,pCHAR
2411 ,pSIZE
2412 ,pCCHAR
2413} PARAM_TYPE;
2414
2415typedef struct {
2416 const char name[11];
2417 attr_t attr;
2418} SCR_ATTRS;
2419
2420typedef struct {
2421 const char name[17];
2422 PARAM_TYPE type;
2423 size_t size;
2424 size_t offset;
2425} SCR_PARAMS;
2426
2427#undef getwin_sp
2428WINDOW *getwin_sp(
2429 SCREEN *sp,
2430 FILE *filep)
2431 { return(*(WINDOW **)0); }
2432
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302433#undef getwin
2434WINDOW *getwin(
2435 FILE *filep)
2436 { return(*(WINDOW **)0); }
2437
2438#undef putwin
2439int putwin(
2440 WINDOW *win,
2441 FILE *filep)
2442 { return(*(int *)0); }
2443
Steve Kondikae271bc2015-11-15 02:50:53 +01002444#undef scr_restore_sp
2445int scr_restore_sp(
2446 SCREEN *sp,
2447 const char *file)
2448 { return(*(int *)0); }
2449
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302450#undef scr_restore
2451int scr_restore(
2452 const char *file)
2453 { return(*(int *)0); }
2454
2455#undef scr_dump
2456int scr_dump(
2457 const char *file)
2458 { return(*(int *)0); }
2459
Steve Kondikae271bc2015-11-15 02:50:53 +01002460#undef scr_init_sp
2461int scr_init_sp(
2462 SCREEN *sp,
2463 const char *file)
2464 { return(*(int *)0); }
2465
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302466#undef scr_init
2467int scr_init(
2468 const char *file)
2469 { return(*(int *)0); }
2470
Steve Kondikae271bc2015-11-15 02:50:53 +01002471#undef scr_set_sp
2472int scr_set_sp(
2473 SCREEN *sp,
2474 const char *file)
2475 { return(*(int *)0); }
2476
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302477#undef scr_set
2478int scr_set(
2479 const char *file)
2480 { return(*(int *)0); }
2481
2482/* ./base/lib_scroll.c */
2483
2484#undef _nc_scroll_window
2485void _nc_scroll_window(
2486 WINDOW *win,
2487 int const n,
Steve Kondikae271bc2015-11-15 02:50:53 +01002488 int const top,
2489 int const bottom,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302490 cchar_t blank)
2491 { /* void */ }
2492
2493#undef wscrl
2494int wscrl(
2495 WINDOW *win,
2496 int n)
2497 { return(*(int *)0); }
2498
2499/* ./base/lib_scrollok.c */
2500
2501#undef scrollok
2502int scrollok(
2503 WINDOW *win,
2504 NCURSES_BOOL flag)
2505 { return(*(int *)0); }
2506
2507/* ./base/lib_scrreg.c */
2508
2509#undef wsetscrreg
2510int wsetscrreg(
2511 WINDOW *win,
2512 int top,
2513 int bottom)
2514 { return(*(int *)0); }
2515
2516/* ./base/lib_set_term.c */
2517
2518#undef set_term
2519SCREEN *set_term(
2520 SCREEN *screenp)
2521 { return(*(SCREEN **)0); }
2522
2523#undef delscreen
2524void delscreen(
2525 SCREEN *sp)
2526 { /* void */ }
2527
Steve Kondikae271bc2015-11-15 02:50:53 +01002528#undef _nc_setupscreen_sp
2529int _nc_setupscreen_sp(
2530 SCREEN **spp,
2531 int slines,
2532 int scolumns,
2533 FILE *output,
2534 int filtered,
2535 int slk_format)
2536 { return(*(int *)0); }
2537
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302538#undef _nc_setupscreen
2539int _nc_setupscreen(
2540 int slines,
2541 int scolumns,
2542 FILE *output,
Steve Kondikae271bc2015-11-15 02:50:53 +01002543 int filtered,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302544 int slk_format)
2545 { return(*(int *)0); }
2546
Steve Kondikae271bc2015-11-15 02:50:53 +01002547#undef _nc_ripoffline_sp
2548int _nc_ripoffline_sp(
2549 SCREEN *sp,
2550 int line,
2551 int (*init)(
2552 WINDOW *p1,
2553 int p2))
2554 { return(*(int *)0); }
2555
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302556#undef _nc_ripoffline
2557int _nc_ripoffline(
2558 int line,
2559 int (*init)(
2560 WINDOW *p1,
2561 int p2))
2562 { return(*(int *)0); }
2563
Steve Kondikae271bc2015-11-15 02:50:53 +01002564#undef ripoffline_sp
2565int ripoffline_sp(
2566 SCREEN *sp,
2567 int line,
2568 int (*init)(
2569 WINDOW *p1,
2570 int p2))
2571 { return(*(int *)0); }
2572
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302573#undef ripoffline
2574int ripoffline(
2575 int line,
2576 int (*init)(
2577 WINDOW *p1,
2578 int p2))
2579 { return(*(int *)0); }
2580
2581/* ./base/lib_slk.c */
2582
Steve Kondikae271bc2015-11-15 02:50:53 +01002583#undef _nc_format_slks
2584int _nc_format_slks(
2585 SCREEN *sp,
2586 int cols)
2587 { return(*(int *)0); }
2588
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302589#undef _nc_slk_initialize
2590int _nc_slk_initialize(
2591 WINDOW *stwin,
2592 int cols)
2593 { return(*(int *)0); }
2594
Steve Kondikae271bc2015-11-15 02:50:53 +01002595#undef slk_restore_sp
2596int slk_restore_sp(
2597 SCREEN *sp)
2598 { return(*(int *)0); }
2599
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302600#undef slk_restore
2601int slk_restore(void)
2602 { return(*(int *)0); }
2603
2604/* ./base/lib_slkatr_set.c */
2605
Steve Kondikae271bc2015-11-15 02:50:53 +01002606#undef slk_attr_set_sp
2607int slk_attr_set_sp(
2608 SCREEN *sp,
2609 const attr_t attr,
2610 short color_pair_number,
2611 void *opts)
2612 { return(*(int *)0); }
2613
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302614#undef slk_attr_set
2615int slk_attr_set(
2616 const attr_t attr,
2617 short color_pair_number,
2618 void *opts)
2619 { return(*(int *)0); }
2620
2621/* ./base/lib_slkatrof.c */
2622
Steve Kondikae271bc2015-11-15 02:50:53 +01002623#undef slk_attroff_sp
2624int slk_attroff_sp(
2625 SCREEN *sp,
2626 const chtype attr)
2627 { return(*(int *)0); }
2628
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302629#undef slk_attroff
2630int slk_attroff(
2631 const chtype attr)
2632 { return(*(int *)0); }
2633
2634/* ./base/lib_slkatron.c */
2635
Steve Kondikae271bc2015-11-15 02:50:53 +01002636#undef slk_attron_sp
2637int slk_attron_sp(
2638 SCREEN *sp,
2639 const chtype attr)
2640 { return(*(int *)0); }
2641
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302642#undef slk_attron
2643int slk_attron(
2644 const chtype attr)
2645 { return(*(int *)0); }
2646
2647/* ./base/lib_slkatrset.c */
2648
Steve Kondikae271bc2015-11-15 02:50:53 +01002649#undef slk_attrset_sp
2650int slk_attrset_sp(
2651 SCREEN *sp,
2652 const chtype attr)
2653 { return(*(int *)0); }
2654
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302655#undef slk_attrset
2656int slk_attrset(
2657 const chtype attr)
2658 { return(*(int *)0); }
2659
2660/* ./base/lib_slkattr.c */
2661
Steve Kondikae271bc2015-11-15 02:50:53 +01002662#undef slk_attr_sp
2663attr_t slk_attr_sp(
2664 SCREEN *sp)
2665 { return(*(attr_t *)0); }
2666
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302667#undef slk_attr
2668attr_t slk_attr(void)
2669 { return(*(attr_t *)0); }
2670
2671/* ./base/lib_slkclear.c */
2672
Steve Kondikae271bc2015-11-15 02:50:53 +01002673#undef slk_clear_sp
2674int slk_clear_sp(
2675 SCREEN *sp)
2676 { return(*(int *)0); }
2677
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302678#undef slk_clear
2679int slk_clear(void)
2680 { return(*(int *)0); }
2681
2682/* ./base/lib_slkcolor.c */
2683
Steve Kondikae271bc2015-11-15 02:50:53 +01002684#undef slk_color_sp
2685int slk_color_sp(
2686 SCREEN *sp,
2687 short color_pair_number)
2688 { return(*(int *)0); }
2689
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302690#undef slk_color
2691int slk_color(
2692 short color_pair_number)
2693 { return(*(int *)0); }
2694
2695/* ./base/lib_slkinit.c */
2696
Steve Kondikae271bc2015-11-15 02:50:53 +01002697#undef slk_init_sp
2698int slk_init_sp(
2699 SCREEN *sp,
2700 int format)
2701 { return(*(int *)0); }
2702
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302703#undef slk_init
2704int slk_init(
2705 int format)
2706 { return(*(int *)0); }
2707
2708/* ./base/lib_slklab.c */
2709
Steve Kondikae271bc2015-11-15 02:50:53 +01002710#undef slk_label_sp
2711char *slk_label_sp(
2712 SCREEN *sp,
2713 int n)
2714 { return(*(char **)0); }
2715
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302716#undef slk_label
2717char *slk_label(
2718 int n)
2719 { return(*(char **)0); }
2720
2721/* ./base/lib_slkrefr.c */
2722
Steve Kondikae271bc2015-11-15 02:50:53 +01002723#undef slk_noutrefresh_sp
2724int slk_noutrefresh_sp(
2725 SCREEN *sp)
2726 { return(*(int *)0); }
2727
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302728#undef slk_noutrefresh
2729int slk_noutrefresh(void)
2730 { return(*(int *)0); }
2731
Steve Kondikae271bc2015-11-15 02:50:53 +01002732#undef slk_refresh_sp
2733int slk_refresh_sp(
2734 SCREEN *sp)
2735 { return(*(int *)0); }
2736
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302737#undef slk_refresh
2738int slk_refresh(void)
2739 { return(*(int *)0); }
2740
2741/* ./base/lib_slkset.c */
2742
Steve Kondikae271bc2015-11-15 02:50:53 +01002743#undef slk_set_sp
2744int slk_set_sp(
2745 SCREEN *sp,
2746 int i,
2747 const char *astr,
2748 int format)
2749 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302750
2751#undef slk_set
2752int slk_set(
2753 int i,
2754 const char *astr,
2755 int format)
2756 { return(*(int *)0); }
2757
2758/* ./base/lib_slktouch.c */
2759
Steve Kondikae271bc2015-11-15 02:50:53 +01002760#undef slk_touch_sp
2761int slk_touch_sp(
2762 SCREEN *sp)
2763 { return(*(int *)0); }
2764
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302765#undef slk_touch
2766int slk_touch(void)
2767 { return(*(int *)0); }
2768
2769/* ./base/lib_touch.c */
2770
2771#undef is_linetouched
2772NCURSES_BOOL is_linetouched(
2773 WINDOW *win,
2774 int line)
2775 { return(*(NCURSES_BOOL *)0); }
2776
2777#undef is_wintouched
2778NCURSES_BOOL is_wintouched(
2779 WINDOW *win)
2780 { return(*(NCURSES_BOOL *)0); }
2781
2782#undef wtouchln
2783int wtouchln(
2784 WINDOW *win,
2785 int y,
2786 int n,
2787 int changed)
2788 { return(*(int *)0); }
2789
2790/* ./trace/lib_tracedmp.c */
2791
2792#undef _tracedump
2793void _tracedump(
2794 const char *name,
2795 WINDOW *win)
2796 { /* void */ }
2797
2798/* ./trace/lib_tracemse.c */
2799
Steve Kondikae271bc2015-11-15 02:50:53 +01002800#undef _nc_trace_mmask_t
2801char *_nc_trace_mmask_t(
2802 SCREEN *sp,
2803 mmask_t code)
2804 { return(*(char **)0); }
2805
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302806#undef _nc_tracemouse
2807char *_nc_tracemouse(
2808 SCREEN *sp,
2809 MEVENT const *ep)
2810 { return(*(char **)0); }
2811
Steve Kondikae271bc2015-11-15 02:50:53 +01002812#undef _nc_retrace_mmask_t
2813mmask_t _nc_retrace_mmask_t(
2814 SCREEN *sp,
2815 mmask_t code)
2816 { return(*(mmask_t *)0); }
2817
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302818#undef _tracemouse
2819char *_tracemouse(
2820 MEVENT const *ep)
2821 { return(*(char **)0); }
2822
2823/* ./tty/lib_tstp.c */
2824
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302825#undef _nc_signal_handler
2826void _nc_signal_handler(
Steve Kondikae271bc2015-11-15 02:50:53 +01002827 int enable)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302828 { /* void */ }
2829
2830/* ./base/lib_ungetch.c */
2831
2832#undef _nc_fifo_dump
2833void _nc_fifo_dump(
2834 SCREEN *sp)
2835 { /* void */ }
2836
Steve Kondikae271bc2015-11-15 02:50:53 +01002837#undef ungetch_sp
2838int ungetch_sp(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302839 SCREEN *sp,
2840 int ch)
2841 { return(*(int *)0); }
2842
2843#undef ungetch
2844int ungetch(
2845 int ch)
2846 { return(*(int *)0); }
2847
2848/* ./tty/lib_vidattr.c */
2849
Steve Kondikae271bc2015-11-15 02:50:53 +01002850#undef vidputs_sp
2851int vidputs_sp(
2852 SCREEN *sp,
2853 chtype newmode,
2854 NCURSES_OUTC_sp outc)
2855 { return(*(int *)0); }
2856
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302857#undef vidputs
2858int vidputs(
2859 chtype newmode,
Steve Kondikae271bc2015-11-15 02:50:53 +01002860 NCURSES_OUTC outc)
2861 { return(*(int *)0); }
2862
2863#undef vidattr_sp
2864int vidattr_sp(
2865 SCREEN *sp,
2866 chtype newmode)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302867 { return(*(int *)0); }
2868
2869#undef vidattr
2870int vidattr(
2871 chtype newmode)
2872 { return(*(int *)0); }
2873
Steve Kondikae271bc2015-11-15 02:50:53 +01002874#undef termattrs_sp
2875chtype termattrs_sp(
2876 SCREEN *sp)
2877 { return(*(chtype *)0); }
2878
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302879#undef termattrs
2880chtype termattrs(void)
2881 { return(*(chtype *)0); }
2882
2883/* ./base/lib_vline.c */
2884
2885#undef wvline
2886int wvline(
2887 WINDOW *win,
2888 chtype ch,
2889 int n)
2890 { return(*(int *)0); }
2891
2892/* ./base/lib_wattroff.c */
2893
2894#undef wattr_off
2895int wattr_off(
2896 WINDOW *win,
2897 attr_t at,
2898 void *opts)
2899 { return(*(int *)0); }
2900
2901/* ./base/lib_wattron.c */
2902
2903#undef wattr_on
2904int wattr_on(
2905 WINDOW *win,
2906 attr_t at,
2907 void *opts)
2908 { return(*(int *)0); }
2909
2910/* ./base/lib_winch.c */
2911
2912#undef winch
2913chtype winch(
2914 WINDOW *win)
2915 { return(*(chtype *)0); }
2916
2917/* ./base/lib_window.c */
2918
2919#undef _nc_synchook
2920void _nc_synchook(
2921 WINDOW *win)
2922 { /* void */ }
2923
2924#undef mvderwin
2925int mvderwin(
2926 WINDOW *win,
2927 int y,
2928 int x)
2929 { return(*(int *)0); }
2930
2931#undef syncok
2932int syncok(
2933 WINDOW *win,
2934 NCURSES_BOOL bf)
2935 { return(*(int *)0); }
2936
2937#undef wsyncup
2938void wsyncup(
2939 WINDOW *win)
2940 { /* void */ }
2941
2942#undef wsyncdown
2943void wsyncdown(
2944 WINDOW *win)
2945 { /* void */ }
2946
2947#undef wcursyncup
2948void wcursyncup(
2949 WINDOW *win)
2950 { /* void */ }
2951
2952#undef dupwin
2953WINDOW *dupwin(
2954 WINDOW *win)
2955 { return(*(WINDOW **)0); }
2956
2957/* ./base/nc_panel.c */
2958
Steve Kondikae271bc2015-11-15 02:50:53 +01002959#undef _nc_panelhook_sp
2960struct panelhook *_nc_panelhook_sp(
2961 SCREEN *sp)
2962 { return(*(struct panelhook **)0); }
2963
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302964#undef _nc_panelhook
2965struct panelhook *_nc_panelhook(void)
2966 { return(*(struct panelhook **)0); }
2967
2968/* ./base/safe_sprintf.c */
2969
Steve Kondikae271bc2015-11-15 02:50:53 +01002970#undef _nc_printf_string_sp
2971char *_nc_printf_string_sp(
2972 SCREEN *sp,
2973 const char *fmt,
2974 va_list ap)
2975 { return(*(char **)0); }
2976
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302977#undef _nc_printf_string
2978char *_nc_printf_string(
2979 const char *fmt,
2980 va_list ap)
2981 { return(*(char **)0); }
2982
2983/* ./tty/tty_update.c */
2984
Steve Kondikae271bc2015-11-15 02:50:53 +01002985#undef doupdate_sp
2986int doupdate_sp(
2987 SCREEN *sp)
2988 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302989
2990#undef doupdate
2991int doupdate(void)
2992 { return(*(int *)0); }
2993
Steve Kondikae271bc2015-11-15 02:50:53 +01002994#undef _nc_scrolln_sp
2995int _nc_scrolln_sp(
2996 SCREEN *sp,
2997 int n,
2998 int top,
2999 int bot,
3000 int maxy)
3001 { return(*(int *)0); }
3002
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303003#undef _nc_scrolln
3004int _nc_scrolln(
3005 int n,
3006 int top,
3007 int bot,
3008 int maxy)
3009 { return(*(int *)0); }
3010
Steve Kondikae271bc2015-11-15 02:50:53 +01003011#undef _nc_screen_resume_sp
3012void _nc_screen_resume_sp(
3013 SCREEN *sp)
3014 { /* void */ }
3015
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303016#undef _nc_screen_resume
3017void _nc_screen_resume(void)
3018 { /* void */ }
3019
Steve Kondikae271bc2015-11-15 02:50:53 +01003020#undef _nc_screen_init_sp
3021void _nc_screen_init_sp(
3022 SCREEN *sp)
3023 { /* void */ }
3024
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303025#undef _nc_screen_init
3026void _nc_screen_init(void)
3027 { /* void */ }
3028
Steve Kondikae271bc2015-11-15 02:50:53 +01003029#undef _nc_screen_wrap_sp
3030void _nc_screen_wrap_sp(
3031 SCREEN *sp)
3032 { /* void */ }
3033
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303034#undef _nc_screen_wrap
3035void _nc_screen_wrap(void)
3036 { /* void */ }
3037
Steve Kondikae271bc2015-11-15 02:50:53 +01003038#undef _nc_do_xmc_glitch_sp
3039void _nc_do_xmc_glitch_sp(
3040 SCREEN *sp,
3041 attr_t previous)
3042 { /* void */ }
3043
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303044#undef _nc_do_xmc_glitch
3045void _nc_do_xmc_glitch(
3046 attr_t previous)
3047 { /* void */ }
3048
3049/* ./trace/varargs.c */
3050
3051typedef enum {
3052 atUnknown = 0, atInteger, atFloat, atPoint, atString
3053} ARGTYPE;
3054
3055#undef _nc_varargs
3056char *_nc_varargs(
3057 const char *fmt,
3058 va_list ap)
3059 { return(*(char **)0); }
3060
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303061/* ./base/vsscanf.c */
3062
3063#undef _nc_vsscanf
3064void _nc_vsscanf(void)
3065 { /* void */ }
3066
3067/* ./base/lib_freeall.c */
3068
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303069#undef _nc_freeall
3070void _nc_freeall(void)
3071 { /* void */ }
3072
Steve Kondikae271bc2015-11-15 02:50:53 +01003073#undef _nc_free_and_exit_sp
3074void _nc_free_and_exit_sp(
3075 SCREEN *sp,
3076 int code)
3077 { /* void */ }
3078
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303079#undef _nc_free_and_exit
3080void _nc_free_and_exit(
3081 int code)
3082 { /* void */ }
3083
3084/* ./widechar/charable.c */
3085
3086#undef _nc_is_charable
3087NCURSES_BOOL _nc_is_charable(
3088 wchar_t ch)
3089 { return(*(NCURSES_BOOL *)0); }
3090
3091#undef _nc_to_char
3092int _nc_to_char(
3093 wint_t ch)
3094 { return(*(int *)0); }
3095
3096#undef _nc_to_widechar
3097wint_t _nc_to_widechar(
3098 int ch)
3099 { return(*(wint_t *)0); }
3100
3101/* ./widechar/lib_add_wch.c */
3102
3103#undef wadd_wch
3104int wadd_wch(
3105 WINDOW *win,
3106 const cchar_t *wch)
3107 { return(*(int *)0); }
3108
3109#undef wecho_wchar
3110int wecho_wchar(
3111 WINDOW *win,
3112 const cchar_t *wch)
3113 { return(*(int *)0); }
3114
3115/* ./widechar/lib_box_set.c */
3116
3117#undef wborder_set
3118int wborder_set(
3119 WINDOW *win,
3120 const cchar_t *ls,
3121 const cchar_t *rs,
3122 const cchar_t *ts,
3123 const cchar_t *bs,
3124 const cchar_t *tl,
3125 const cchar_t *tr,
3126 const cchar_t *bl,
3127 const cchar_t *br)
3128 { return(*(int *)0); }
3129
3130/* ./widechar/lib_cchar.c */
3131
3132#undef setcchar
3133int setcchar(
3134 cchar_t *wcval,
3135 const wchar_t *wch,
3136 const attr_t attrs,
3137 short color_pair,
3138 const void *opts)
3139 { return(*(int *)0); }
3140
3141#undef getcchar
3142int getcchar(
3143 const cchar_t *wcval,
3144 wchar_t *wch,
3145 attr_t *attrs,
3146 short *color_pair,
3147 void *opts)
3148 { return(*(int *)0); }
3149
3150/* ./widechar/lib_erasewchar.c */
3151
3152#undef erasewchar
3153int erasewchar(
3154 wchar_t *wch)
3155 { return(*(int *)0); }
3156
3157#undef killwchar
3158int killwchar(
3159 wchar_t *wch)
3160 { return(*(int *)0); }
3161
3162/* ./widechar/lib_get_wch.c */
3163
3164#undef wget_wch
3165int wget_wch(
3166 WINDOW *win,
3167 wint_t *result)
3168 { return(*(int *)0); }
3169
3170/* ./widechar/lib_get_wstr.c */
3171
3172#undef wgetn_wstr
3173int wgetn_wstr(
3174 WINDOW *win,
3175 wint_t *str,
3176 int maxlen)
3177 { return(*(int *)0); }
3178
3179/* ./widechar/lib_hline_set.c */
3180
3181#undef whline_set
3182int whline_set(
3183 WINDOW *win,
3184 const cchar_t *ch,
3185 int n)
3186 { return(*(int *)0); }
3187
3188/* ./widechar/lib_in_wch.c */
3189
3190#undef win_wch
3191int win_wch(
3192 WINDOW *win,
3193 cchar_t *wcval)
3194 { return(*(int *)0); }
3195
3196/* ./widechar/lib_in_wchnstr.c */
3197
3198#undef win_wchnstr
3199int win_wchnstr(
3200 WINDOW *win,
3201 cchar_t *wchstr,
3202 int n)
3203 { return(*(int *)0); }
3204
3205/* ./widechar/lib_ins_wch.c */
3206
Steve Kondikae271bc2015-11-15 02:50:53 +01003207#undef _nc_insert_wch
3208int _nc_insert_wch(
3209 WINDOW *win,
3210 const cchar_t *wch)
3211 { return(*(int *)0); }
3212
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303213#undef wins_wch
3214int wins_wch(
3215 WINDOW *win,
3216 const cchar_t *wch)
3217 { return(*(int *)0); }
3218
3219#undef wins_nwstr
3220int wins_nwstr(
3221 WINDOW *win,
3222 const wchar_t *wstr,
3223 int n)
3224 { return(*(int *)0); }
3225
3226/* ./widechar/lib_inwstr.c */
3227
3228#undef winnwstr
3229int winnwstr(
3230 WINDOW *win,
3231 wchar_t *wstr,
3232 int n)
3233 { return(*(int *)0); }
3234
3235#undef winwstr
3236int winwstr(
3237 WINDOW *win,
3238 wchar_t *wstr)
3239 { return(*(int *)0); }
3240
3241/* ./widechar/lib_key_name.c */
3242
3243#undef key_name
Steve Kondikae271bc2015-11-15 02:50:53 +01003244const char *key_name(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303245 wchar_t c)
Steve Kondikae271bc2015-11-15 02:50:53 +01003246 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303247
3248/* ./widechar/lib_pecho_wchar.c */
3249
3250#undef pecho_wchar
3251int pecho_wchar(
3252 WINDOW *pad,
3253 const cchar_t *wch)
3254 { return(*(int *)0); }
3255
3256/* ./widechar/lib_slk_wset.c */
3257
3258#undef slk_wset
3259int slk_wset(
3260 int i,
3261 const wchar_t *astr,
3262 int format)
3263 { return(*(int *)0); }
3264
3265/* ./widechar/lib_unget_wch.c */
3266
3267#undef _nc_wcrtomb
3268size_t _nc_wcrtomb(
3269 char *target,
3270 wchar_t source,
3271 mbstate_t *state)
3272 { return(*(size_t *)0); }
3273
Steve Kondikae271bc2015-11-15 02:50:53 +01003274#undef unget_wch_sp
3275int unget_wch_sp(
3276 SCREEN *sp,
3277 const wchar_t wch)
3278 { return(*(int *)0); }
3279
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303280#undef unget_wch
3281int unget_wch(
3282 const wchar_t wch)
3283 { return(*(int *)0); }
3284
3285/* ./widechar/lib_vid_attr.c */
3286
Steve Kondikae271bc2015-11-15 02:50:53 +01003287#undef vid_puts_sp
3288int vid_puts_sp(
3289 SCREEN *sp,
3290 attr_t newmode,
3291 short pair,
3292 void *opts,
3293 NCURSES_OUTC_sp outc)
3294 { return(*(int *)0); }
3295
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303296#undef vid_puts
3297int vid_puts(
3298 attr_t newmode,
3299 short pair,
3300 void *opts,
Steve Kondikae271bc2015-11-15 02:50:53 +01003301 NCURSES_OUTC outc)
3302 { return(*(int *)0); }
3303
3304#undef vid_attr_sp
3305int vid_attr_sp(
3306 SCREEN *sp,
3307 attr_t newmode,
3308 short pair,
3309 void *opts)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303310 { return(*(int *)0); }
3311
3312#undef vid_attr
3313int vid_attr(
3314 attr_t newmode,
3315 short pair,
3316 void *opts)
3317 { return(*(int *)0); }
3318
Steve Kondikae271bc2015-11-15 02:50:53 +01003319#undef term_attrs_sp
3320attr_t term_attrs_sp(
3321 SCREEN *sp)
3322 { return(*(attr_t *)0); }
3323
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303324#undef term_attrs
3325attr_t term_attrs(void)
3326 { return(*(attr_t *)0); }
3327
3328/* ./widechar/lib_vline_set.c */
3329
3330#undef wvline_set
3331int wvline_set(
3332 WINDOW *win,
3333 const cchar_t *ch,
3334 int n)
3335 { return(*(int *)0); }
3336
3337/* ./widechar/lib_wacs.c */
3338
3339#undef _nc_wacs
3340cchar_t *_nc_wacs;
3341
3342#undef _nc_init_wacs
3343void _nc_init_wacs(void)
3344 { /* void */ }
3345
3346/* ./widechar/lib_wunctrl.c */
3347
Steve Kondikae271bc2015-11-15 02:50:53 +01003348#undef wunctrl_sp
3349wchar_t *wunctrl_sp(
3350 SCREEN *sp,
3351 cchar_t *wc)
3352 { return(*(wchar_t **)0); }
3353
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303354#undef wunctrl
3355wchar_t *wunctrl(
3356 cchar_t *wc)
3357 { return(*(wchar_t **)0); }
3358
3359/* ./expanded.c */
3360
3361#undef _nc_toggle_attr_on
3362void _nc_toggle_attr_on(
3363 attr_t *S,
3364 attr_t at)
3365 { /* void */ }
3366
3367#undef _nc_toggle_attr_off
3368void _nc_toggle_attr_off(
3369 attr_t *S,
3370 attr_t at)
3371 { /* void */ }
3372
Steve Kondikae271bc2015-11-15 02:50:53 +01003373#undef _nc_DelCharCost_sp
3374int _nc_DelCharCost_sp(
3375 SCREEN *sp,
3376 int count)
3377 { return(*(int *)0); }
3378
3379#undef _nc_InsCharCost_sp
3380int _nc_InsCharCost_sp(
3381 SCREEN *sp,
3382 int count)
3383 { return(*(int *)0); }
3384
3385#undef _nc_UpdateAttrs_sp
3386void _nc_UpdateAttrs_sp(
3387 SCREEN *sp,
3388 const cchar_t *c)
3389 { /* void */ }
3390
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303391#undef _nc_DelCharCost
3392int _nc_DelCharCost(
3393 int count)
3394 { return(*(int *)0); }
3395
3396#undef _nc_InsCharCost
3397int _nc_InsCharCost(
3398 int count)
3399 { return(*(int *)0); }
3400
3401#undef _nc_UpdateAttrs
3402void _nc_UpdateAttrs(
Steve Kondikae271bc2015-11-15 02:50:53 +01003403 const cchar_t *c)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303404 { /* void */ }
3405
3406/* ./base/legacy_coding.c */
3407
Steve Kondikae271bc2015-11-15 02:50:53 +01003408#undef use_legacy_coding_sp
3409int use_legacy_coding_sp(
3410 SCREEN *sp,
3411 int level)
3412 { return(*(int *)0); }
3413
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303414#undef use_legacy_coding
3415int use_legacy_coding(
3416 int level)
3417 { return(*(int *)0); }
3418
3419/* ./base/lib_dft_fgbg.c */
3420
Steve Kondikae271bc2015-11-15 02:50:53 +01003421#undef use_default_colors_sp
3422int use_default_colors_sp(
3423 SCREEN *sp)
3424 { return(*(int *)0); }
3425
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303426#undef use_default_colors
3427int use_default_colors(void)
3428 { return(*(int *)0); }
3429
Steve Kondikae271bc2015-11-15 02:50:53 +01003430#undef assume_default_colors_sp
3431int assume_default_colors_sp(
3432 SCREEN *sp,
3433 int fg,
3434 int bg)
3435 { return(*(int *)0); }
3436
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303437#undef assume_default_colors
3438int assume_default_colors(
3439 int fg,
3440 int bg)
3441 { return(*(int *)0); }
3442
3443/* ./tinfo/lib_print.c */
3444
Steve Kondikae271bc2015-11-15 02:50:53 +01003445#undef mcprint_sp
3446int mcprint_sp(
3447 SCREEN *sp,
3448 char *data,
3449 int len)
3450 { return(*(int *)0); }
3451
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303452#undef mcprint
3453int mcprint(
3454 char *data,
3455 int len)
3456 { return(*(int *)0); }
3457
3458/* ./base/resizeterm.c */
3459
Steve Kondikae271bc2015-11-15 02:50:53 +01003460#undef is_term_resized_sp
3461NCURSES_BOOL is_term_resized_sp(
3462 SCREEN *sp,
3463 int ToLines,
3464 int ToCols)
3465 { return(*(NCURSES_BOOL *)0); }
3466
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303467#undef is_term_resized
3468NCURSES_BOOL is_term_resized(
3469 int ToLines,
3470 int ToCols)
3471 { return(*(NCURSES_BOOL *)0); }
3472
Steve Kondikae271bc2015-11-15 02:50:53 +01003473#undef resize_term_sp
3474int resize_term_sp(
3475 SCREEN *sp,
3476 int ToLines,
3477 int ToCols)
3478 { return(*(int *)0); }
3479
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303480#undef resize_term
3481int resize_term(
3482 int ToLines,
3483 int ToCols)
3484 { return(*(int *)0); }
3485
Steve Kondikae271bc2015-11-15 02:50:53 +01003486#undef resizeterm_sp
3487int resizeterm_sp(
3488 SCREEN *sp,
3489 int ToLines,
3490 int ToCols)
3491 { return(*(int *)0); }
3492
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303493#undef resizeterm
3494int resizeterm(
3495 int ToLines,
3496 int ToCols)
3497 { return(*(int *)0); }
3498
3499/* ./trace/trace_xnames.c */
3500
3501#undef _nc_trace_xnames
3502void _nc_trace_xnames(
3503 TERMTYPE *tp)
3504 { /* void */ }
3505
3506/* ./tinfo/use_screen.c */
3507
3508#undef use_screen
3509int use_screen(
3510 SCREEN *screen,
3511 NCURSES_SCREEN_CB func,
3512 void *data)
3513 { return(*(int *)0); }
3514
3515/* ./base/use_window.c */
3516
3517#undef use_window
3518int use_window(
3519 WINDOW *win,
3520 NCURSES_WINDOW_CB func,
3521 void *data)
3522 { return(*(int *)0); }
3523
3524/* ./base/wresize.c */
3525
3526#undef wresize
3527int wresize(
3528 WINDOW *win,
3529 int ToLines,
3530 int ToCols)
3531 { return(*(int *)0); }
3532
3533/* ./tinfo/access.c */
3534
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303535#undef _nc_rootname
3536char *_nc_rootname(
3537 char *path)
3538 { return(*(char **)0); }
3539
3540#undef _nc_is_abs_path
3541NCURSES_BOOL _nc_is_abs_path(
3542 const char *path)
3543 { return(*(NCURSES_BOOL *)0); }
3544
3545#undef _nc_pathlast
3546unsigned _nc_pathlast(
3547 const char *path)
3548 { return(*(unsigned *)0); }
3549
3550#undef _nc_basename
3551char *_nc_basename(
3552 char *path)
3553 { return(*(char **)0); }
3554
3555#undef _nc_access
3556int _nc_access(
3557 const char *path,
3558 int mode)
3559 { return(*(int *)0); }
3560
3561#undef _nc_is_dir_path
3562NCURSES_BOOL _nc_is_dir_path(
3563 const char *path)
3564 { return(*(NCURSES_BOOL *)0); }
3565
3566#undef _nc_is_file_path
3567NCURSES_BOOL _nc_is_file_path(
3568 const char *path)
3569 { return(*(NCURSES_BOOL *)0); }
3570
3571#undef _nc_env_access
3572int _nc_env_access(void)
3573 { return(*(int *)0); }
3574
3575/* ./tinfo/add_tries.c */
3576
3577#undef _nc_add_to_try
3578int _nc_add_to_try(
3579 TRIES **tree,
3580 const char *str,
3581 unsigned code)
3582 { return(*(int *)0); }
3583
3584/* ./tinfo/alloc_ttype.c */
3585
3586#undef _nc_align_termtype
3587void _nc_align_termtype(
3588 TERMTYPE *to,
3589 TERMTYPE *from)
3590 { /* void */ }
3591
3592#undef _nc_copy_termtype
3593void _nc_copy_termtype(
3594 TERMTYPE *dst,
Steve Kondikae271bc2015-11-15 02:50:53 +01003595 const TERMTYPE *src)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303596 { /* void */ }
3597
3598/* ./codes.c */
3599
3600#undef boolcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01003601const char *const boolcodes[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303602#undef numcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01003603const char *const numcodes[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303604#undef strcodes
Steve Kondikae271bc2015-11-15 02:50:53 +01003605const char *const strcodes[] = {0};
3606
3607/* ./comp_captab.c */
3608
3609#undef _nc_get_table
3610const struct name_table_entry *_nc_get_table(
3611 NCURSES_BOOL termcap)
3612 { return(*(const struct name_table_entry **)0); }
3613
3614#undef _nc_get_hash_table
3615const HashValue *_nc_get_hash_table(
3616 NCURSES_BOOL termcap)
3617 { return(*(const HashValue **)0); }
3618
3619#undef _nc_get_alias_table
3620const struct alias *_nc_get_alias_table(
3621 NCURSES_BOOL termcap)
3622 { return(*(const struct alias **)0); }
3623
3624#undef _nc_get_hash_info
3625const HashData *_nc_get_hash_info(
3626 NCURSES_BOOL termcap)
3627 { return(*(const HashData **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303628
3629/* ./tinfo/comp_error.c */
Steve Kondikae271bc2015-11-15 02:50:53 +01003630
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303631#undef _nc_suppress_warnings
3632NCURSES_BOOL _nc_suppress_warnings;
3633#undef _nc_curr_line
3634int _nc_curr_line;
3635#undef _nc_curr_col
3636int _nc_curr_col;
3637
3638#undef _nc_get_source
3639const char *_nc_get_source(void)
3640 { return(*(const char **)0); }
3641
3642#undef _nc_set_source
3643void _nc_set_source(
3644 const char *const name)
3645 { /* void */ }
3646
3647#undef _nc_set_type
3648void _nc_set_type(
3649 const char *const name)
3650 { /* void */ }
3651
3652#undef _nc_get_type
3653void _nc_get_type(
3654 char *name)
3655 { /* void */ }
3656
3657#undef _nc_warning
3658void _nc_warning(
3659 const char *const fmt,
3660 ...)
3661 { /* void */ }
3662
3663#undef _nc_err_abort
3664void _nc_err_abort(
3665 const char *const fmt,
3666 ...)
3667 { /* void */ }
3668
3669#undef _nc_syserr_abort
3670void _nc_syserr_abort(
3671 const char *const fmt,
3672 ...)
3673 { /* void */ }
3674
Steve Kondikae271bc2015-11-15 02:50:53 +01003675/* ./tinfo/comp_hash.c */
3676
3677#undef _nc_find_entry
3678struct name_table_entry const *_nc_find_entry(
3679 const char *string,
3680 const HashValue *hash_table)
3681 { return(*(struct name_table_entry const **)0); }
3682
3683#undef _nc_find_type_entry
3684struct name_table_entry const *_nc_find_type_entry(
3685 const char *string,
3686 int type,
3687 NCURSES_BOOL termcap)
3688 { return(*(struct name_table_entry const **)0); }
3689
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303690/* ./tinfo/db_iterator.c */
3691
3692#undef _nc_tic_dir
3693const char *_nc_tic_dir(
3694 const char *path)
3695 { return(*(const char **)0); }
3696
3697#undef _nc_keep_tic_dir
3698void _nc_keep_tic_dir(
3699 const char *path)
3700 { /* void */ }
3701
3702#undef _nc_last_db
3703void _nc_last_db(void)
3704 { /* void */ }
3705
3706#undef _nc_next_db
3707const char *_nc_next_db(
3708 DBDIRS *state,
3709 int *offset)
3710 { return(*(const char **)0); }
3711
3712#undef _nc_first_db
3713void _nc_first_db(
3714 DBDIRS *state,
3715 int *offset)
3716 { /* void */ }
3717
3718/* ./tinfo/doalloc.c */
3719
3720#undef _nc_doalloc
3721void *_nc_doalloc(
3722 void *oldp,
3723 size_t amount)
3724 { return(*(void **)0); }
3725
3726/* ./tinfo/entries.c */
3727
3728#undef _nc_head
3729ENTRY *_nc_head;
3730#undef _nc_tail
3731ENTRY *_nc_tail;
3732
3733#undef _nc_free_entry
3734void _nc_free_entry(
3735 ENTRY *headp,
3736 TERMTYPE *tterm)
3737 { /* void */ }
3738
3739#undef _nc_free_entries
3740void _nc_free_entries(
3741 ENTRY *headp)
3742 { /* void */ }
3743
3744#undef _nc_delink_entry
3745ENTRY *_nc_delink_entry(
3746 ENTRY *headp,
3747 TERMTYPE *tterm)
3748 { return(*(ENTRY **)0); }
3749
3750#undef _nc_leaks_tinfo
3751void _nc_leaks_tinfo(void)
3752 { /* void */ }
3753
3754/* ./fallback.c */
3755
3756#undef _nc_fallback
3757const TERMTYPE *_nc_fallback(
3758 const char *name)
3759 { return(*(const TERMTYPE **)0); }
3760
3761/* ./tinfo/free_ttype.c */
3762
3763#undef _nc_free_termtype
3764void _nc_free_termtype(
3765 TERMTYPE *ptr)
3766 { /* void */ }
3767
3768#undef _nc_user_definable
3769NCURSES_BOOL _nc_user_definable;
3770
3771#undef use_extended_names
3772int use_extended_names(
3773 NCURSES_BOOL flag)
3774 { return(*(int *)0); }
3775
3776/* ./tinfo/getenv_num.c */
3777
3778#undef _nc_getenv_num
3779int _nc_getenv_num(
3780 const char *name)
3781 { return(*(int *)0); }
3782
Steve Kondikae271bc2015-11-15 02:50:53 +01003783#undef _nc_setenv_num
3784void _nc_setenv_num(
3785 const char *name,
3786 int value)
3787 { /* void */ }
3788
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303789/* ./tinfo/home_terminfo.c */
3790
3791#undef _nc_home_terminfo
3792char *_nc_home_terminfo(void)
3793 { return(*(char **)0); }
3794
3795/* ./tinfo/init_keytry.c */
3796
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303797#undef _nc_init_keytry
3798void _nc_init_keytry(
3799 SCREEN *sp)
3800 { /* void */ }
3801
3802/* ./tinfo/lib_acs.c */
3803
3804#undef acs_map
3805chtype acs_map[128];
3806
Steve Kondikae271bc2015-11-15 02:50:53 +01003807#undef _nc_init_acs_sp
3808void _nc_init_acs_sp(
3809 SCREEN *sp)
3810 { /* void */ }
3811
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303812#undef _nc_init_acs
3813void _nc_init_acs(void)
3814 { /* void */ }
3815
3816/* ./tinfo/lib_baudrate.c */
3817
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303818struct speed {
Steve Kondikae271bc2015-11-15 02:50:53 +01003819 short s;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303820 int sp;
3821};
3822
3823#undef _nc_baudrate
3824int _nc_baudrate(
3825 int OSpeed)
3826 { return(*(int *)0); }
3827
3828#undef _nc_ospeed
3829int _nc_ospeed(
3830 int BaudRate)
3831 { return(*(int *)0); }
3832
Steve Kondikae271bc2015-11-15 02:50:53 +01003833#undef baudrate_sp
3834int baudrate_sp(
3835 SCREEN *sp)
3836 { return(*(int *)0); }
3837
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303838#undef baudrate
3839int baudrate(void)
3840 { return(*(int *)0); }
3841
3842/* ./tinfo/lib_cur_term.c */
3843
3844#undef cur_term
3845TERMINAL *cur_term;
3846
Steve Kondikae271bc2015-11-15 02:50:53 +01003847#undef set_curterm_sp
3848TERMINAL *set_curterm_sp(
3849 SCREEN *sp,
3850 TERMINAL *termp)
3851 { return(*(TERMINAL **)0); }
3852
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303853#undef set_curterm
3854TERMINAL *set_curterm(
3855 TERMINAL *termp)
3856 { return(*(TERMINAL **)0); }
3857
Steve Kondikae271bc2015-11-15 02:50:53 +01003858#undef del_curterm_sp
3859int del_curterm_sp(
3860 SCREEN *sp,
3861 TERMINAL *termp)
3862 { return(*(int *)0); }
3863
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303864#undef del_curterm
3865int del_curterm(
3866 TERMINAL *termp)
3867 { return(*(int *)0); }
3868
3869/* ./tinfo/lib_data.c */
3870
3871#undef stdscr
3872WINDOW *stdscr;
3873#undef curscr
3874WINDOW *curscr;
3875#undef newscr
3876WINDOW *newscr;
3877#undef _nc_screen_chain
3878SCREEN *_nc_screen_chain;
3879#undef SP
3880SCREEN *SP;
3881#undef _nc_globals
3882NCURSES_GLOBALS _nc_globals;
3883#undef _nc_prescreen
3884NCURSES_PRESCREEN _nc_prescreen;
3885
Steve Kondikae271bc2015-11-15 02:50:53 +01003886#undef _nc_screen_of
3887SCREEN *_nc_screen_of(
3888 WINDOW *win)
3889 { return(*(SCREEN **)0); }
3890
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303891/* ./tinfo/lib_has_cap.c */
3892
Steve Kondikae271bc2015-11-15 02:50:53 +01003893#undef has_ic_sp
3894NCURSES_BOOL has_ic_sp(
3895 SCREEN *sp)
3896 { return(*(NCURSES_BOOL *)0); }
3897
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303898#undef has_ic
3899NCURSES_BOOL has_ic(void)
3900 { return(*(NCURSES_BOOL *)0); }
3901
Steve Kondikae271bc2015-11-15 02:50:53 +01003902#undef has_il_sp
3903NCURSES_BOOL has_il_sp(
3904 SCREEN *sp)
3905 { return(*(NCURSES_BOOL *)0); }
3906
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303907#undef has_il
3908NCURSES_BOOL has_il(void)
3909 { return(*(NCURSES_BOOL *)0); }
3910
3911/* ./tinfo/lib_kernel.c */
3912
Steve Kondikae271bc2015-11-15 02:50:53 +01003913#undef erasechar_sp
3914char erasechar_sp(
3915 SCREEN *sp)
3916 { return(*(char *)0); }
3917
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303918#undef erasechar
3919char erasechar(void)
3920 { return(*(char *)0); }
3921
Steve Kondikae271bc2015-11-15 02:50:53 +01003922#undef killchar_sp
3923char killchar_sp(
3924 SCREEN *sp)
3925 { return(*(char *)0); }
3926
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303927#undef killchar
3928char killchar(void)
3929 { return(*(char *)0); }
3930
Steve Kondikae271bc2015-11-15 02:50:53 +01003931#undef flushinp_sp
3932int flushinp_sp(
3933 SCREEN *sp)
3934 { return(*(int *)0); }
3935
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303936#undef flushinp
3937int flushinp(void)
3938 { return(*(int *)0); }
3939
3940/* ./lib_keyname.c */
3941
3942struct kn { short offset; int code; };
3943
Steve Kondikae271bc2015-11-15 02:50:53 +01003944#undef keyname_sp
3945const char *keyname_sp(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303946 SCREEN *sp,
3947 int c)
Steve Kondikae271bc2015-11-15 02:50:53 +01003948 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303949
3950#undef keyname
Steve Kondikae271bc2015-11-15 02:50:53 +01003951const char *keyname(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303952 int c)
Steve Kondikae271bc2015-11-15 02:50:53 +01003953 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303954
3955/* ./tinfo/lib_longname.c */
3956
Steve Kondikae271bc2015-11-15 02:50:53 +01003957#undef longname_sp
3958char *longname_sp(
3959 SCREEN *sp)
3960 { return(*(char **)0); }
3961
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303962#undef longname
3963char *longname(void)
3964 { return(*(char **)0); }
3965
3966/* ./tinfo/lib_napms.c */
3967
Steve Kondikae271bc2015-11-15 02:50:53 +01003968#undef napms_sp
3969int napms_sp(
3970 SCREEN *sp,
3971 int ms)
3972 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303973
3974#undef napms
3975int napms(
3976 int ms)
3977 { return(*(int *)0); }
3978
3979/* ./tinfo/lib_options.c */
3980
3981#undef idlok
3982int idlok(
3983 WINDOW *win,
3984 NCURSES_BOOL flag)
3985 { return(*(int *)0); }
3986
3987#undef idcok
3988void idcok(
3989 WINDOW *win,
3990 NCURSES_BOOL flag)
3991 { /* void */ }
3992
Steve Kondikae271bc2015-11-15 02:50:53 +01003993#undef halfdelay_sp
3994int halfdelay_sp(
3995 SCREEN *sp,
3996 int t)
3997 { return(*(int *)0); }
3998
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303999#undef halfdelay
4000int halfdelay(
4001 int t)
4002 { return(*(int *)0); }
4003
4004#undef nodelay
4005int nodelay(
4006 WINDOW *win,
4007 NCURSES_BOOL flag)
4008 { return(*(int *)0); }
4009
4010#undef notimeout
4011int notimeout(
4012 WINDOW *win,
4013 NCURSES_BOOL f)
4014 { return(*(int *)0); }
4015
4016#undef wtimeout
4017void wtimeout(
4018 WINDOW *win,
4019 int delay)
4020 { /* void */ }
4021
4022#undef keypad
4023int keypad(
4024 WINDOW *win,
4025 NCURSES_BOOL flag)
4026 { return(*(int *)0); }
4027
4028#undef meta
4029int meta(
4030 WINDOW *win,
4031 NCURSES_BOOL flag)
4032 { return(*(int *)0); }
4033
Steve Kondikae271bc2015-11-15 02:50:53 +01004034#undef curs_set_sp
4035int curs_set_sp(
4036 SCREEN *sp,
4037 int vis)
4038 { return(*(int *)0); }
4039
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304040#undef curs_set
4041int curs_set(
4042 int vis)
4043 { return(*(int *)0); }
4044
Steve Kondikae271bc2015-11-15 02:50:53 +01004045#undef typeahead_sp
4046int typeahead_sp(
4047 SCREEN *sp,
4048 int fd)
4049 { return(*(int *)0); }
4050
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304051#undef typeahead
4052int typeahead(
4053 int fd)
4054 { return(*(int *)0); }
4055
Steve Kondikae271bc2015-11-15 02:50:53 +01004056#undef has_key_sp
4057int has_key_sp(
4058 SCREEN *sp,
4059 int keycode)
4060 { return(*(int *)0); }
4061
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304062#undef has_key
4063int has_key(
4064 int keycode)
4065 { return(*(int *)0); }
4066
Steve Kondikae271bc2015-11-15 02:50:53 +01004067#undef _nc_putp_flush_sp
4068int _nc_putp_flush_sp(
4069 SCREEN *sp,
4070 const char *name,
4071 const char *value)
4072 { return(*(int *)0); }
4073
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304074#undef _nc_keypad
4075int _nc_keypad(
4076 SCREEN *sp,
Steve Kondikae271bc2015-11-15 02:50:53 +01004077 int flag)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304078 { return(*(int *)0); }
4079
4080/* ./tinfo/lib_raw.c */
4081
Steve Kondikae271bc2015-11-15 02:50:53 +01004082#undef raw_sp
4083int raw_sp(
4084 SCREEN *sp)
4085 { return(*(int *)0); }
4086
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304087#undef raw
4088int raw(void)
4089 { return(*(int *)0); }
4090
Steve Kondikae271bc2015-11-15 02:50:53 +01004091#undef cbreak_sp
4092int cbreak_sp(
4093 SCREEN *sp)
4094 { return(*(int *)0); }
4095
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304096#undef cbreak
4097int cbreak(void)
4098 { return(*(int *)0); }
4099
Steve Kondikae271bc2015-11-15 02:50:53 +01004100#undef qiflush_sp
4101void qiflush_sp(
4102 SCREEN *sp)
4103 { /* void */ }
4104
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304105#undef qiflush
4106void qiflush(void)
4107 { /* void */ }
4108
Steve Kondikae271bc2015-11-15 02:50:53 +01004109#undef noraw_sp
4110int noraw_sp(
4111 SCREEN *sp)
4112 { return(*(int *)0); }
4113
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304114#undef noraw
4115int noraw(void)
4116 { return(*(int *)0); }
4117
Steve Kondikae271bc2015-11-15 02:50:53 +01004118#undef nocbreak_sp
4119int nocbreak_sp(
4120 SCREEN *sp)
4121 { return(*(int *)0); }
4122
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304123#undef nocbreak
4124int nocbreak(void)
4125 { return(*(int *)0); }
4126
Steve Kondikae271bc2015-11-15 02:50:53 +01004127#undef noqiflush_sp
4128void noqiflush_sp(
4129 SCREEN *sp)
4130 { /* void */ }
4131
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304132#undef noqiflush
4133void noqiflush(void)
4134 { /* void */ }
4135
Steve Kondikae271bc2015-11-15 02:50:53 +01004136#undef intrflush_sp
4137int intrflush_sp(
4138 SCREEN *sp,
4139 WINDOW *win,
4140 NCURSES_BOOL flag)
4141 { return(*(int *)0); }
4142
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304143#undef intrflush
4144int intrflush(
4145 WINDOW *win,
4146 NCURSES_BOOL flag)
4147 { return(*(int *)0); }
4148
4149/* ./tinfo/lib_setup.c */
4150
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304151#undef ttytype
4152char ttytype[256];
4153#undef LINES
4154int LINES;
4155#undef COLS
4156int COLS;
4157#undef TABSIZE
4158int TABSIZE;
4159
Steve Kondikae271bc2015-11-15 02:50:53 +01004160#undef set_tabsize_sp
4161int set_tabsize_sp(
4162 SCREEN *sp,
4163 int value)
4164 { return(*(int *)0); }
4165
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304166#undef set_tabsize
4167int set_tabsize(
4168 int value)
4169 { return(*(int *)0); }
4170
4171#undef _nc_handle_sigwinch
4172int _nc_handle_sigwinch(
4173 SCREEN *sp)
4174 { return(*(int *)0); }
4175
Steve Kondikae271bc2015-11-15 02:50:53 +01004176#undef use_env_sp
4177void use_env_sp(
4178 SCREEN *sp,
4179 NCURSES_BOOL f)
4180 { /* void */ }
4181
4182#undef use_tioctl_sp
4183void use_tioctl_sp(
4184 SCREEN *sp,
4185 NCURSES_BOOL f)
4186 { /* void */ }
4187
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304188#undef use_env
4189void use_env(
4190 NCURSES_BOOL f)
4191 { /* void */ }
4192
Steve Kondikae271bc2015-11-15 02:50:53 +01004193#undef use_tioctl
4194void use_tioctl(
4195 NCURSES_BOOL f)
4196 { /* void */ }
4197
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304198#undef _nc_get_screensize
4199void _nc_get_screensize(
4200 SCREEN *sp,
4201 int *linep,
4202 int *colp)
4203 { /* void */ }
4204
4205#undef _nc_update_screensize
4206void _nc_update_screensize(
4207 SCREEN *sp)
4208 { /* void */ }
4209
Steve Kondikae271bc2015-11-15 02:50:53 +01004210#undef _nc_setup_tinfo
4211int _nc_setup_tinfo(
4212 const char *const tn,
4213 TERMTYPE *const tp)
4214 { return(*(int *)0); }
4215
4216#undef _nc_tinfo_cmdch
4217void _nc_tinfo_cmdch(
4218 TERMINAL *termp,
4219 int proto)
4220 { /* void */ }
4221
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304222#undef _nc_get_locale
4223char *_nc_get_locale(void)
4224 { return(*(char **)0); }
4225
4226#undef _nc_unicode_locale
4227int _nc_unicode_locale(void)
4228 { return(*(int *)0); }
4229
4230#undef _nc_locale_breaks_acs
4231int _nc_locale_breaks_acs(
4232 TERMINAL *termp)
4233 { return(*(int *)0); }
4234
4235#undef _nc_setupterm
4236int _nc_setupterm(
Steve Kondikae271bc2015-11-15 02:50:53 +01004237 const char *tname,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304238 int Filedes,
4239 int *errret,
Steve Kondikae271bc2015-11-15 02:50:53 +01004240 int reuse)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304241 { return(*(int *)0); }
4242
Steve Kondikae271bc2015-11-15 02:50:53 +01004243#undef new_prescr
4244SCREEN *new_prescr(void)
4245 { return(*(SCREEN **)0); }
4246
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304247#undef setupterm
4248int setupterm(
Steve Kondikae271bc2015-11-15 02:50:53 +01004249 const char *tname,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304250 int Filedes,
4251 int *errret)
4252 { return(*(int *)0); }
4253
4254/* ./tinfo/lib_termcap.c */
4255
4256#undef UP
4257char *UP;
4258#undef BC
4259char *BC;
4260
Steve Kondikae271bc2015-11-15 02:50:53 +01004261#undef tgetent_sp
4262int tgetent_sp(
4263 SCREEN *sp,
4264 char *bufp,
4265 const char *name)
4266 { return(*(int *)0); }
4267
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304268#undef tgetent
4269int tgetent(
4270 char *bufp,
4271 const char *name)
4272 { return(*(int *)0); }
4273
Steve Kondikae271bc2015-11-15 02:50:53 +01004274#undef tgetflag_sp
4275int tgetflag_sp(
4276 SCREEN *sp,
4277 const char *id)
4278 { return(*(int *)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304279
4280#undef tgetflag
4281int tgetflag(
Steve Kondikae271bc2015-11-15 02:50:53 +01004282 const char *id)
4283 { return(*(int *)0); }
4284
4285#undef tgetnum_sp
4286int tgetnum_sp(
4287 SCREEN *sp,
4288 const char *id)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304289 { return(*(int *)0); }
4290
4291#undef tgetnum
4292int tgetnum(
Steve Kondikae271bc2015-11-15 02:50:53 +01004293 const char *id)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304294 { return(*(int *)0); }
4295
Steve Kondikae271bc2015-11-15 02:50:53 +01004296#undef tgetstr_sp
4297char *tgetstr_sp(
4298 SCREEN *sp,
4299 const char *id,
4300 char **area)
4301 { return(*(char **)0); }
4302
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304303#undef tgetstr
4304char *tgetstr(
Steve Kondikae271bc2015-11-15 02:50:53 +01004305 const char *id,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304306 char **area)
4307 { return(*(char **)0); }
4308
4309/* ./tinfo/lib_termname.c */
4310
Steve Kondikae271bc2015-11-15 02:50:53 +01004311#undef termname_sp
4312char *termname_sp(
4313 SCREEN *sp)
4314 { return(*(char **)0); }
4315
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304316#undef termname
4317char *termname(void)
4318 { return(*(char **)0); }
4319
4320/* ./tinfo/lib_tgoto.c */
4321
4322#undef tgoto
4323char *tgoto(
4324 const char *string,
4325 int x,
4326 int y)
4327 { return(*(char **)0); }
4328
4329/* ./tinfo/lib_ti.c */
4330
Steve Kondikae271bc2015-11-15 02:50:53 +01004331#undef tigetflag_sp
4332int tigetflag_sp(
4333 SCREEN *sp,
4334 const char *str)
4335 { return(*(int *)0); }
4336
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304337#undef tigetflag
4338int tigetflag(
Steve Kondikae271bc2015-11-15 02:50:53 +01004339 const char *str)
4340 { return(*(int *)0); }
4341
4342#undef tigetnum_sp
4343int tigetnum_sp(
4344 SCREEN *sp,
4345 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304346 { return(*(int *)0); }
4347
4348#undef tigetnum
4349int tigetnum(
Steve Kondikae271bc2015-11-15 02:50:53 +01004350 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304351 { return(*(int *)0); }
4352
Steve Kondikae271bc2015-11-15 02:50:53 +01004353#undef tigetstr_sp
4354char *tigetstr_sp(
4355 SCREEN *sp,
4356 const char *str)
4357 { return(*(char **)0); }
4358
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304359#undef tigetstr
4360char *tigetstr(
Steve Kondikae271bc2015-11-15 02:50:53 +01004361 const char *str)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304362 { return(*(char **)0); }
4363
4364/* ./tinfo/lib_tparm.c */
4365
4366#undef _nc_tparm_err
4367int _nc_tparm_err;
4368
4369#undef _nc_tparm_analyze
4370int _nc_tparm_analyze(
4371 const char *string,
4372 char *p_is_s[9],
Steve Kondikae271bc2015-11-15 02:50:53 +01004373 int *_nc_popcount)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304374 { return(*(int *)0); }
4375
4376#undef tparm
4377char *tparm(
Steve Kondikae271bc2015-11-15 02:50:53 +01004378 const char *string,
4379 ...)
4380 { return(*(char **)0); }
4381
4382#undef tiparm
4383char *tiparm(
4384 const char *string,
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304385 ...)
4386 { return(*(char **)0); }
4387
4388/* ./tinfo/lib_tputs.c */
4389
4390#undef PC
4391char PC;
4392#undef ospeed
Steve Kondikae271bc2015-11-15 02:50:53 +01004393short ospeed;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304394#undef _nc_nulls_sent
4395int _nc_nulls_sent;
4396
4397#undef _nc_set_no_padding
4398void _nc_set_no_padding(
4399 SCREEN *sp)
4400 { /* void */ }
4401
Steve Kondikae271bc2015-11-15 02:50:53 +01004402#undef delay_output_sp
4403int delay_output_sp(
4404 SCREEN *sp,
4405 int ms)
4406 { return(*(int *)0); }
4407
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304408#undef delay_output
4409int delay_output(
4410 int ms)
4411 { return(*(int *)0); }
4412
Steve Kondikae271bc2015-11-15 02:50:53 +01004413#undef _nc_flush_sp
4414void _nc_flush_sp(
4415 SCREEN *sp)
4416 { /* void */ }
4417
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304418#undef _nc_flush
4419void _nc_flush(void)
4420 { /* void */ }
4421
Steve Kondikae271bc2015-11-15 02:50:53 +01004422#undef _nc_outch_sp
4423int _nc_outch_sp(
4424 SCREEN *sp,
4425 int ch)
4426 { return(*(int *)0); }
4427
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304428#undef _nc_outch
4429int _nc_outch(
4430 int ch)
4431 { return(*(int *)0); }
4432
Steve Kondikae271bc2015-11-15 02:50:53 +01004433#undef _nc_putchar_sp
4434int _nc_putchar_sp(
4435 SCREEN *sp,
4436 int ch)
4437 { return(*(int *)0); }
4438
4439#undef _nc_putchar
4440int _nc_putchar(
4441 int ch)
4442 { return(*(int *)0); }
4443
4444#undef putp_sp
4445int putp_sp(
4446 SCREEN *sp,
4447 const char *string)
4448 { return(*(int *)0); }
4449
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304450#undef putp
4451int putp(
4452 const char *string)
4453 { return(*(int *)0); }
4454
Steve Kondikae271bc2015-11-15 02:50:53 +01004455#undef _nc_putp_sp
4456int _nc_putp_sp(
4457 SCREEN *sp,
4458 const char *name,
4459 const char *string)
4460 { return(*(int *)0); }
4461
4462#undef _nc_putp
4463int _nc_putp(
4464 const char *name,
4465 const char *string)
4466 { return(*(int *)0); }
4467
4468#undef tputs_sp
4469int tputs_sp(
4470 SCREEN *sp,
4471 const char *string,
4472 int affcnt,
4473 NCURSES_OUTC_sp outc)
4474 { return(*(int *)0); }
4475
4476#undef _nc_outc_wrapper
4477int _nc_outc_wrapper(
4478 SCREEN *sp,
4479 int c)
4480 { return(*(int *)0); }
4481
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304482#undef tputs
4483int tputs(
4484 const char *string,
4485 int affcnt,
4486 int (*outc)(
4487 int p1))
4488 { return(*(int *)0); }
4489
4490/* ./trace/lib_trace.c */
4491
4492#undef _nc_tracing
4493unsigned _nc_tracing;
4494#undef _nc_tputs_trace
4495const char *_nc_tputs_trace = {0};
4496#undef _nc_outchars
4497long _nc_outchars;
4498
4499#undef trace
4500void trace(
4501 const unsigned int tracelevel)
4502 { /* void */ }
4503
4504#undef _tracef
4505void _tracef(
4506 const char *fmt,
4507 ...)
4508 { /* void */ }
4509
4510#undef _nc_retrace_bool
4511NCURSES_BOOL _nc_retrace_bool(
Steve Kondikae271bc2015-11-15 02:50:53 +01004512 int code)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304513 { return(*(NCURSES_BOOL *)0); }
4514
Steve Kondikae271bc2015-11-15 02:50:53 +01004515#undef _nc_retrace_char
4516char _nc_retrace_char(
4517 int code)
4518 { return(*(char *)0); }
4519
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304520#undef _nc_retrace_int
4521int _nc_retrace_int(
4522 int code)
4523 { return(*(int *)0); }
4524
4525#undef _nc_retrace_unsigned
4526unsigned _nc_retrace_unsigned(
4527 unsigned code)
4528 { return(*(unsigned *)0); }
4529
4530#undef _nc_retrace_ptr
4531char *_nc_retrace_ptr(
4532 char *code)
4533 { return(*(char **)0); }
4534
4535#undef _nc_retrace_cptr
4536const char *_nc_retrace_cptr(
4537 const char *code)
4538 { return(*(const char **)0); }
4539
4540#undef _nc_retrace_cvoid_ptr
Steve Kondikae271bc2015-11-15 02:50:53 +01004541const void *_nc_retrace_cvoid_ptr(
4542 const void *code)
4543 { return(*(const void **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304544
4545#undef _nc_retrace_void_ptr
4546void *_nc_retrace_void_ptr(
4547 void *code)
4548 { return(*(void **)0); }
4549
4550#undef _nc_retrace_sp
4551SCREEN *_nc_retrace_sp(
4552 SCREEN *code)
4553 { return(*(SCREEN **)0); }
4554
4555#undef _nc_retrace_win
4556WINDOW *_nc_retrace_win(
4557 WINDOW *code)
4558 { return(*(WINDOW **)0); }
4559
4560/* ./trace/lib_traceatr.c */
4561
4562#undef _traceattr2
4563char *_traceattr2(
4564 int bufnum,
4565 chtype newmode)
4566 { return(*(char **)0); }
4567
4568#undef _traceattr
4569char *_traceattr(
4570 attr_t newmode)
4571 { return(*(char **)0); }
4572
Steve Kondikae271bc2015-11-15 02:50:53 +01004573#undef _nc_retrace_int_attr_t
4574int _nc_retrace_int_attr_t(
4575 attr_t code)
4576 { return(*(int *)0); }
4577
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304578#undef _nc_retrace_attr_t
4579attr_t _nc_retrace_attr_t(
4580 attr_t code)
4581 { return(*(attr_t *)0); }
4582
4583#undef _nc_altcharset_name
4584const char *_nc_altcharset_name(
4585 attr_t attr,
4586 chtype ch)
4587 { return(*(const char **)0); }
4588
4589#undef _tracechtype2
4590char *_tracechtype2(
4591 int bufnum,
4592 chtype ch)
4593 { return(*(char **)0); }
4594
4595#undef _tracechtype
4596char *_tracechtype(
4597 chtype ch)
4598 { return(*(char **)0); }
4599
4600#undef _nc_retrace_chtype
4601chtype _nc_retrace_chtype(
4602 chtype code)
4603 { return(*(chtype *)0); }
4604
4605#undef _tracecchar_t2
4606char *_tracecchar_t2(
4607 int bufnum,
4608 const cchar_t *ch)
4609 { return(*(char **)0); }
4610
4611#undef _tracecchar_t
4612char *_tracecchar_t(
4613 const cchar_t *ch)
4614 { return(*(char **)0); }
4615
4616/* ./trace/lib_tracebits.c */
4617
4618typedef struct {
4619 unsigned int val;
Steve Kondikae271bc2015-11-15 02:50:53 +01004620 const char name[8];
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304621} BITNAMES;
4622
4623#undef _nc_trace_ttymode
4624char *_nc_trace_ttymode(
4625 struct termios *tty)
4626 { return(*(char **)0); }
4627
4628#undef _nc_tracebits
4629char *_nc_tracebits(void)
4630 { return(*(char **)0); }
4631
4632/* ./trace/lib_tracechr.c */
4633
4634#undef _nc_tracechar
4635char *_nc_tracechar(
4636 SCREEN *sp,
4637 int ch)
4638 { return(*(char **)0); }
4639
4640#undef _tracechar
4641char *_tracechar(
4642 int ch)
4643 { return(*(char **)0); }
4644
4645/* ./tinfo/lib_ttyflags.c */
4646
Steve Kondikae271bc2015-11-15 02:50:53 +01004647#undef _nc_get_tty_mode_sp
4648int _nc_get_tty_mode_sp(
4649 SCREEN *sp,
4650 struct termios *buf)
4651 { return(*(int *)0); }
4652
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304653#undef _nc_get_tty_mode
4654int _nc_get_tty_mode(
4655 struct termios *buf)
4656 { return(*(int *)0); }
4657
Steve Kondikae271bc2015-11-15 02:50:53 +01004658#undef _nc_set_tty_mode_sp
4659int _nc_set_tty_mode_sp(
4660 SCREEN *sp,
4661 struct termios *buf)
4662 { return(*(int *)0); }
4663
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304664#undef _nc_set_tty_mode
4665int _nc_set_tty_mode(
4666 struct termios *buf)
4667 { return(*(int *)0); }
4668
Steve Kondikae271bc2015-11-15 02:50:53 +01004669#undef def_shell_mode_sp
4670int def_shell_mode_sp(
4671 SCREEN *sp)
4672 { return(*(int *)0); }
4673
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304674#undef def_shell_mode
4675int def_shell_mode(void)
4676 { return(*(int *)0); }
4677
Steve Kondikae271bc2015-11-15 02:50:53 +01004678#undef def_prog_mode_sp
4679int def_prog_mode_sp(
4680 SCREEN *sp)
4681 { return(*(int *)0); }
4682
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304683#undef def_prog_mode
4684int def_prog_mode(void)
4685 { return(*(int *)0); }
4686
Steve Kondikae271bc2015-11-15 02:50:53 +01004687#undef reset_prog_mode_sp
4688int reset_prog_mode_sp(
4689 SCREEN *sp)
4690 { return(*(int *)0); }
4691
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304692#undef reset_prog_mode
4693int reset_prog_mode(void)
4694 { return(*(int *)0); }
4695
Steve Kondikae271bc2015-11-15 02:50:53 +01004696#undef reset_shell_mode_sp
4697int reset_shell_mode_sp(
4698 SCREEN *sp)
4699 { return(*(int *)0); }
4700
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304701#undef reset_shell_mode
4702int reset_shell_mode(void)
4703 { return(*(int *)0); }
4704
Steve Kondikae271bc2015-11-15 02:50:53 +01004705#undef savetty_sp
4706int savetty_sp(
4707 SCREEN *sp)
4708 { return(*(int *)0); }
4709
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304710#undef savetty
4711int savetty(void)
4712 { return(*(int *)0); }
4713
Steve Kondikae271bc2015-11-15 02:50:53 +01004714#undef resetty_sp
4715int resetty_sp(
4716 SCREEN *sp)
4717 { return(*(int *)0); }
4718
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304719#undef resetty
4720int resetty(void)
4721 { return(*(int *)0); }
4722
4723/* ./tty/lib_twait.c */
4724
4725#undef _nc_timed_wait
4726int _nc_timed_wait(
4727 SCREEN *sp,
4728 int mode,
4729 int milliseconds,
4730 int *timeleft)
4731 { return(*(int *)0); }
4732
4733/* ./tinfo/name_match.c */
4734
4735#undef _nc_first_name
4736char *_nc_first_name(
4737 const char *const sp)
4738 { return(*(char **)0); }
4739
4740#undef _nc_name_match
4741int _nc_name_match(
4742 const char *const namelst,
4743 const char *const name,
4744 const char *const delim)
4745 { return(*(int *)0); }
4746
4747/* ./names.c */
4748
4749#undef boolnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004750const char *const boolnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304751#undef boolfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004752const char *const boolfnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304753#undef numnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004754const char *const numnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304755#undef numfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004756const char *const numfnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304757#undef strnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004758const char *const strnames[] = {0};
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304759#undef strfnames
Steve Kondikae271bc2015-11-15 02:50:53 +01004760const char *const strfnames[] = {0};
4761
4762/* ./tinfo/obsolete.c */
4763
4764#undef _nc_set_buffer_sp
4765void _nc_set_buffer_sp(
4766 SCREEN *sp,
4767 FILE *ofp,
4768 int buffered)
4769 { /* void */ }
4770
4771#undef _nc_set_buffer
4772void _nc_set_buffer(
4773 FILE *ofp,
4774 int buffered)
4775 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304776
4777/* ./tinfo/read_entry.c */
4778
Steve Kondikae271bc2015-11-15 02:50:53 +01004779#undef _nc_init_termtype
4780void _nc_init_termtype(
4781 TERMTYPE *const tp)
4782 { /* void */ }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304783
4784#undef _nc_read_termtype
4785int _nc_read_termtype(
4786 TERMTYPE *ptr,
4787 char *buffer,
4788 int limit)
4789 { return(*(int *)0); }
4790
4791#undef _nc_read_file_entry
4792int _nc_read_file_entry(
4793 const char *const filename,
4794 TERMTYPE *ptr)
4795 { return(*(int *)0); }
4796
4797#undef _nc_read_entry
4798int _nc_read_entry(
4799 const char *const name,
4800 char *const filename,
4801 TERMTYPE *const tp)
4802 { return(*(int *)0); }
4803
4804/* ./tinfo/read_termcap.c */
4805
Steve Kondikae271bc2015-11-15 02:50:53 +01004806#undef _nc_read_termcap
4807void _nc_read_termcap(void)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304808 { /* void */ }
4809
4810/* ./tinfo/strings.c */
4811
4812#undef _nc_str_init
4813string_desc *_nc_str_init(
4814 string_desc *dst,
4815 char *src,
4816 size_t len)
4817 { return(*(string_desc **)0); }
4818
4819#undef _nc_str_null
4820string_desc *_nc_str_null(
4821 string_desc *dst,
4822 size_t len)
4823 { return(*(string_desc **)0); }
4824
4825#undef _nc_str_copy
4826string_desc *_nc_str_copy(
4827 string_desc *dst,
4828 string_desc *src)
4829 { return(*(string_desc **)0); }
4830
4831#undef _nc_safe_strcat
4832NCURSES_BOOL _nc_safe_strcat(
4833 string_desc *dst,
4834 const char *src)
4835 { return(*(NCURSES_BOOL *)0); }
4836
4837#undef _nc_safe_strcpy
4838NCURSES_BOOL _nc_safe_strcpy(
4839 string_desc *dst,
4840 const char *src)
4841 { return(*(NCURSES_BOOL *)0); }
4842
4843/* ./trace/trace_buf.c */
4844
4845#undef _nc_trace_buf
4846char *_nc_trace_buf(
4847 int bufnum,
4848 size_t want)
4849 { return(*(char **)0); }
4850
4851#undef _nc_trace_bufcat
4852char *_nc_trace_bufcat(
4853 int bufnum,
4854 const char *value)
4855 { return(*(char **)0); }
4856
4857/* ./trace/trace_tries.c */
4858
4859#undef _nc_trace_tries
4860void _nc_trace_tries(
4861 TRIES *tree)
4862 { /* void */ }
4863
4864/* ./base/tries.c */
4865
4866#undef _nc_expand_try
4867char *_nc_expand_try(
4868 TRIES *tree,
4869 unsigned code,
4870 int *count,
4871 size_t len)
4872 { return(*(char **)0); }
4873
4874#undef _nc_remove_key
4875int _nc_remove_key(
4876 TRIES **tree,
4877 unsigned code)
4878 { return(*(int *)0); }
4879
4880#undef _nc_remove_string
4881int _nc_remove_string(
4882 TRIES **tree,
4883 const char *string)
4884 { return(*(int *)0); }
4885
4886/* ./tinfo/trim_sgr0.c */
4887
4888#undef _nc_trim_sgr0
4889char *_nc_trim_sgr0(
4890 TERMTYPE *tp)
4891 { return(*(char **)0); }
4892
4893/* ./unctrl.c */
4894
Steve Kondikae271bc2015-11-15 02:50:53 +01004895#undef unctrl_sp
4896const char *unctrl_sp(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304897 SCREEN *sp,
4898 chtype ch)
Steve Kondikae271bc2015-11-15 02:50:53 +01004899 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304900
4901#undef unctrl
Steve Kondikae271bc2015-11-15 02:50:53 +01004902const char *unctrl(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304903 chtype ch)
Steve Kondikae271bc2015-11-15 02:50:53 +01004904 { return(*(const char **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304905
4906/* ./trace/visbuf.c */
4907
4908#undef _nc_visbuf2
4909const char *_nc_visbuf2(
4910 int bufnum,
4911 const char *buf)
4912 { return(*(const char **)0); }
4913
4914#undef _nc_visbuf
4915const char *_nc_visbuf(
4916 const char *buf)
4917 { return(*(const char **)0); }
4918
4919#undef _nc_visbufn
4920const char *_nc_visbufn(
4921 const char *buf,
4922 int len)
4923 { return(*(const char **)0); }
4924
4925#undef _nc_viswbuf2
4926const char *_nc_viswbuf2(
4927 int bufnum,
4928 const wchar_t *buf)
4929 { return(*(const char **)0); }
4930
4931#undef _nc_viswbuf
4932const char *_nc_viswbuf(
4933 const wchar_t *buf)
4934 { return(*(const char **)0); }
4935
4936#undef _nc_viswbufn
4937const char *_nc_viswbufn(
4938 const wchar_t *buf,
4939 int len)
4940 { return(*(const char **)0); }
4941
4942#undef _nc_viswibuf
4943const char *_nc_viswibuf(
4944 const wint_t *buf)
4945 { return(*(const char **)0); }
4946
4947#undef _nc_viscbuf2
4948const char *_nc_viscbuf2(
4949 int bufnum,
4950 const cchar_t *buf,
4951 int len)
4952 { return(*(const char **)0); }
4953
4954#undef _nc_viscbuf
4955const char *_nc_viscbuf(
4956 const cchar_t *buf,
4957 int len)
4958 { return(*(const char **)0); }
4959
4960/* ./tinfo/alloc_entry.c */
4961
4962#undef _nc_init_entry
4963void _nc_init_entry(
4964 TERMTYPE *const tp)
4965 { /* void */ }
4966
4967#undef _nc_copy_entry
4968ENTRY *_nc_copy_entry(
4969 ENTRY *oldp)
4970 { return(*(ENTRY **)0); }
4971
4972#undef _nc_save_str
4973char *_nc_save_str(
4974 const char *const string)
4975 { return(*(char **)0); }
4976
4977#undef _nc_wrap_entry
4978void _nc_wrap_entry(
4979 ENTRY *const ep,
4980 NCURSES_BOOL copy_strings)
4981 { /* void */ }
4982
4983#undef _nc_merge_entry
4984void _nc_merge_entry(
4985 TERMTYPE *const to,
4986 TERMTYPE *const from)
4987 { /* void */ }
4988
4989/* ./tinfo/captoinfo.c */
4990
4991#undef _nc_captoinfo
4992char *_nc_captoinfo(
4993 const char *cap,
4994 const char *s,
4995 int const parameterized)
4996 { return(*(char **)0); }
4997
4998#undef _nc_infotocap
4999char *_nc_infotocap(
5000 const char *cap,
5001 const char *str,
5002 int const parameterized)
5003 { return(*(char **)0); }
5004
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305005/* ./tinfo/comp_expand.c */
5006
5007#undef _nc_tic_expand
5008char *_nc_tic_expand(
5009 const char *srcp,
5010 NCURSES_BOOL tic_format,
5011 int numbers)
5012 { return(*(char **)0); }
5013
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305014/* ./tinfo/comp_parse.c */
5015
5016#undef _nc_check_termtype2
5017void (*_nc_check_termtype2)(
5018 TERMTYPE *p1,
5019 NCURSES_BOOL p2);
5020#undef _nc_check_termtype
5021void (*_nc_check_termtype)(
5022 TERMTYPE *p1);
5023
5024#undef _nc_entry_match
5025NCURSES_BOOL _nc_entry_match(
5026 char *n1,
5027 char *n2)
5028 { return(*(NCURSES_BOOL *)0); }
5029
5030#undef _nc_read_entry_source
5031void _nc_read_entry_source(
5032 FILE *fp,
5033 char *buf,
5034 int literal,
5035 NCURSES_BOOL silent,
5036 NCURSES_BOOL (*hook)(
5037 ENTRY *p1))
5038 { /* void */ }
5039
5040#undef _nc_resolve_uses2
5041int _nc_resolve_uses2(
5042 NCURSES_BOOL fullresolve,
5043 NCURSES_BOOL literal)
5044 { return(*(int *)0); }
5045
5046#undef _nc_resolve_uses
5047int _nc_resolve_uses(
5048 NCURSES_BOOL fullresolve)
5049 { return(*(int *)0); }
5050
5051/* ./tinfo/comp_scan.c */
5052
5053#undef _nc_syntax
5054int _nc_syntax;
Steve Kondikae271bc2015-11-15 02:50:53 +01005055#undef _nc_strict_bsd
5056int _nc_strict_bsd;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305057#undef _nc_curr_file_pos
5058long _nc_curr_file_pos;
5059#undef _nc_comment_start
5060long _nc_comment_start;
5061#undef _nc_comment_end
5062long _nc_comment_end;
5063#undef _nc_start_line
5064long _nc_start_line;
5065#undef _nc_curr_token
5066struct token _nc_curr_token;
5067#undef _nc_disable_period
5068NCURSES_BOOL _nc_disable_period;
5069
5070#undef _nc_reset_input
5071void _nc_reset_input(
5072 FILE *fp,
5073 char *buf)
5074 { /* void */ }
5075
5076#undef _nc_get_token
5077int _nc_get_token(
5078 NCURSES_BOOL silent)
5079 { return(*(int *)0); }
5080
5081#undef _nc_trans_string
5082int _nc_trans_string(
5083 char *ptr,
5084 char *last)
5085 { return(*(int *)0); }
5086
5087#undef _nc_push_token
5088void _nc_push_token(
5089 int tokclass)
5090 { /* void */ }
5091
5092#undef _nc_panic_mode
5093void _nc_panic_mode(
5094 char ch)
5095 { /* void */ }
5096
5097/* ./tinfo/parse_entry.c */
5098
5099#undef _nc_parse_entry
5100int _nc_parse_entry(
5101 struct entry *entryp,
5102 int literal,
5103 NCURSES_BOOL silent)
5104 { return(*(int *)0); }
5105
5106#undef _nc_capcmp
5107int _nc_capcmp(
5108 const char *s,
5109 const char *t)
5110 { return(*(int *)0); }
5111
5112typedef struct {
Steve Kondikae271bc2015-11-15 02:50:53 +01005113 const char from[3];
5114 const char to[6];
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305115} assoc;
5116
5117/* ./tinfo/write_entry.c */
5118
5119#undef _nc_set_writedir
5120void _nc_set_writedir(
Steve Kondikae271bc2015-11-15 02:50:53 +01005121 const char *dir)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305122 { /* void */ }
5123
5124#undef _nc_write_entry
5125void _nc_write_entry(
5126 TERMTYPE *const tp)
5127 { /* void */ }
5128
5129#undef _nc_tic_written
5130int _nc_tic_written(void)
5131 { return(*(int *)0); }
5132
5133/* ./base/define_key.c */
5134
Steve Kondikae271bc2015-11-15 02:50:53 +01005135#undef define_key_sp
5136int define_key_sp(
5137 SCREEN *sp,
5138 const char *str,
5139 int keycode)
5140 { return(*(int *)0); }
5141
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305142#undef define_key
5143int define_key(
5144 const char *str,
5145 int keycode)
5146 { return(*(int *)0); }
5147
5148/* ./tinfo/hashed_db.c */
5149
5150#undef _nc_hashed_db
5151void _nc_hashed_db(void)
5152 { /* void */ }
5153
5154/* ./base/key_defined.c */
5155
Steve Kondikae271bc2015-11-15 02:50:53 +01005156#undef key_defined_sp
5157int key_defined_sp(
5158 SCREEN *sp,
5159 const char *str)
5160 { return(*(int *)0); }
5161
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305162#undef key_defined
5163int key_defined(
5164 const char *str)
5165 { return(*(int *)0); }
5166
5167/* ./base/keybound.c */
5168
Steve Kondikae271bc2015-11-15 02:50:53 +01005169#undef keybound_sp
5170char *keybound_sp(
5171 SCREEN *sp,
5172 int code,
5173 int count)
5174 { return(*(char **)0); }
5175
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305176#undef keybound
5177char *keybound(
5178 int code,
5179 int count)
5180 { return(*(char **)0); }
5181
5182/* ./base/keyok.c */
5183
Steve Kondikae271bc2015-11-15 02:50:53 +01005184#undef keyok_sp
5185int keyok_sp(
5186 SCREEN *sp,
5187 int c,
5188 NCURSES_BOOL flag)
5189 { return(*(int *)0); }
5190
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305191#undef keyok
5192int keyok(
5193 int c,
5194 NCURSES_BOOL flag)
5195 { return(*(int *)0); }
5196
5197/* ./base/version.c */
5198
5199#undef curses_version
5200const char *curses_version(void)
5201 { return(*(const char **)0); }