Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1 | /**************************************************************************** |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2 | * Copyright 2019-2022,2023 Thomas E. Dickey * |
| 3 | * Copyright 2008-2016,2017 Free Software Foundation, Inc. * |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4 | * * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a * |
| 6 | * copy of this software and associated documentation files (the * |
| 7 | * "Software"), to deal in the Software without restriction, including * |
| 8 | * without limitation the rights to use, copy, modify, merge, publish, * |
| 9 | * distribute, distribute with modifications, sublicense, and/or sell * |
| 10 | * copies of the Software, and to permit persons to whom the Software is * |
| 11 | * furnished to do so, subject to the following conditions: * |
| 12 | * * |
| 13 | * The above copyright notice and this permission notice shall be included * |
| 14 | * in all copies or substantial portions of the Software. * |
| 15 | * * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * |
| 17 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * |
| 18 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * |
| 19 | * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * |
| 20 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * |
| 21 | * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * |
| 22 | * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * |
| 23 | * * |
| 24 | * Except as contained in this notice, the name(s) of the above copyright * |
| 25 | * holders shall not be used in advertising or otherwise to promote the * |
| 26 | * sale, use or other dealings in this Software without prior written * |
| 27 | * authorization. * |
| 28 | ****************************************************************************/ |
| 29 | |
| 30 | /**************************************************************************** |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 31 | * Author: Thomas E. Dickey 2008-on * |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 32 | ****************************************************************************/ |
| 33 | /* LINTLIBRARY */ |
| 34 | |
| 35 | /* ./tty/hardscroll.c */ |
| 36 | |
| 37 | #include <curses.priv.h> |
| 38 | |
| 39 | #undef _nc_oldnums |
| 40 | int *_nc_oldnums; |
| 41 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 42 | #undef _nc_scroll_optimize_sp |
| 43 | void _nc_scroll_optimize_sp( |
| 44 | SCREEN *sp) |
| 45 | { /* void */ } |
| 46 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 47 | #undef _nc_scroll_optimize |
| 48 | void _nc_scroll_optimize(void) |
| 49 | { /* void */ } |
| 50 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 51 | #undef _nc_linedump_sp |
| 52 | void _nc_linedump_sp( |
| 53 | SCREEN *sp) |
| 54 | { /* void */ } |
| 55 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 56 | #undef _nc_linedump |
| 57 | void _nc_linedump(void) |
| 58 | { /* void */ } |
| 59 | |
| 60 | /* ./tty/hashmap.c */ |
| 61 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 62 | #undef _nc_hash_map_sp |
| 63 | void _nc_hash_map_sp( |
| 64 | SCREEN *sp) |
| 65 | { /* void */ } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 66 | |
| 67 | #undef _nc_hash_map |
| 68 | void _nc_hash_map(void) |
| 69 | { /* void */ } |
| 70 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 71 | #undef _nc_make_oldhash_sp |
| 72 | void _nc_make_oldhash_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 73 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 74 | int i) |
| 75 | { /* void */ } |
| 76 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 77 | #undef _nc_make_oldhash |
| 78 | void _nc_make_oldhash( |
| 79 | int i) |
| 80 | { /* void */ } |
| 81 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 82 | #undef _nc_scroll_oldhash_sp |
| 83 | void _nc_scroll_oldhash_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 84 | SCREEN *sp, |
| 85 | int n, |
| 86 | int top, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 87 | int bot) |
| 88 | { /* void */ } |
| 89 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 90 | #undef _nc_scroll_oldhash |
| 91 | void _nc_scroll_oldhash( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 92 | int n, |
| 93 | int top, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 94 | int bot) |
| 95 | { /* void */ } |
| 96 | |
| 97 | /* ./base/lib_addch.c */ |
| 98 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 99 | #undef _nc_render |
| 100 | chtype _nc_render( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 101 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 102 | chtype ch) |
| 103 | { return(*(chtype *)0); } |
| 104 | |
| 105 | #undef _nc_waddch_nosync |
| 106 | int _nc_waddch_nosync( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 107 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 108 | const chtype c) |
| 109 | { return(*(int *)0); } |
| 110 | |
| 111 | #undef waddch |
| 112 | int waddch( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 113 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 114 | const chtype ch) |
| 115 | { return(*(int *)0); } |
| 116 | |
| 117 | #undef wechochar |
| 118 | int wechochar( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 119 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 120 | const chtype ch) |
| 121 | { return(*(int *)0); } |
| 122 | |
| 123 | /* ./base/lib_addstr.c */ |
| 124 | |
| 125 | #undef waddnstr |
| 126 | int waddnstr( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 127 | WINDOW *win, |
| 128 | const char *astr, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 129 | int n) |
| 130 | { return(*(int *)0); } |
| 131 | |
| 132 | #undef waddchnstr |
| 133 | int waddchnstr( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 134 | WINDOW *win, |
| 135 | const chtype *astr, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 136 | int n) |
| 137 | { return(*(int *)0); } |
| 138 | |
| 139 | /* ./base/lib_beep.c */ |
| 140 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 141 | #undef beep_sp |
| 142 | int beep_sp( |
| 143 | SCREEN *sp) |
| 144 | { return(*(int *)0); } |
| 145 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 146 | #undef beep |
| 147 | int beep(void) |
| 148 | { return(*(int *)0); } |
| 149 | |
| 150 | /* ./base/lib_bkgd.c */ |
| 151 | |
| 152 | #undef wbkgdset |
| 153 | void wbkgdset( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 154 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 155 | chtype ch) |
| 156 | { /* void */ } |
| 157 | |
| 158 | #undef wbkgd |
| 159 | int wbkgd( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 160 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 161 | chtype ch) |
| 162 | { return(*(int *)0); } |
| 163 | |
| 164 | /* ./base/lib_box.c */ |
| 165 | |
| 166 | #undef wborder |
| 167 | int wborder( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 168 | WINDOW *win, |
| 169 | chtype ls, |
| 170 | chtype rs, |
| 171 | chtype ts, |
| 172 | chtype bs, |
| 173 | chtype tl, |
| 174 | chtype tr, |
| 175 | chtype bl, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 176 | chtype br) |
| 177 | { return(*(int *)0); } |
| 178 | |
| 179 | /* ./base/lib_chgat.c */ |
| 180 | |
| 181 | #undef wchgat |
| 182 | int wchgat( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 183 | WINDOW *win, |
| 184 | int n, |
| 185 | attr_t attr, |
| 186 | short pair_arg, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 187 | const void *opts) |
| 188 | { return(*(int *)0); } |
| 189 | |
| 190 | /* ./base/lib_clear.c */ |
| 191 | |
| 192 | #undef wclear |
| 193 | int wclear( |
| 194 | WINDOW *win) |
| 195 | { return(*(int *)0); } |
| 196 | |
| 197 | /* ./base/lib_clearok.c */ |
| 198 | |
| 199 | #undef clearok |
| 200 | int clearok( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 201 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 202 | NCURSES_BOOL flag) |
| 203 | { return(*(int *)0); } |
| 204 | |
| 205 | /* ./base/lib_clrbot.c */ |
| 206 | |
| 207 | #undef wclrtobot |
| 208 | int wclrtobot( |
| 209 | WINDOW *win) |
| 210 | { return(*(int *)0); } |
| 211 | |
| 212 | /* ./base/lib_clreol.c */ |
| 213 | |
| 214 | #undef wclrtoeol |
| 215 | int wclrtoeol( |
| 216 | WINDOW *win) |
| 217 | { return(*(int *)0); } |
| 218 | |
| 219 | /* ./base/lib_color.c */ |
| 220 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 221 | #undef _nc_COLOR_PAIRS |
| 222 | int _nc_COLOR_PAIRS(void) |
| 223 | { return(*(int *)0); } |
| 224 | |
| 225 | #undef _nc_COLORS |
| 226 | int _nc_COLORS(void) |
| 227 | { return(*(int *)0); } |
| 228 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 229 | #undef _nc_reset_colors_sp |
| 230 | NCURSES_BOOL _nc_reset_colors_sp( |
| 231 | SCREEN *sp) |
| 232 | { return(*(NCURSES_BOOL *)0); } |
| 233 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 234 | #undef _nc_reset_colors |
| 235 | NCURSES_BOOL _nc_reset_colors(void) |
| 236 | { return(*(NCURSES_BOOL *)0); } |
| 237 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 238 | #undef start_color_sp |
| 239 | int start_color_sp( |
| 240 | SCREEN *sp) |
| 241 | { return(*(int *)0); } |
| 242 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 243 | #undef start_color |
| 244 | int start_color(void) |
| 245 | { return(*(int *)0); } |
| 246 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 247 | #undef _nc_change_pair |
| 248 | void _nc_change_pair( |
| 249 | SCREEN *sp, |
| 250 | int pair) |
| 251 | { /* void */ } |
| 252 | |
| 253 | #undef _nc_reserve_pairs |
| 254 | void _nc_reserve_pairs( |
| 255 | SCREEN *sp, |
| 256 | int want) |
| 257 | { /* void */ } |
| 258 | |
| 259 | #undef _nc_init_pair |
| 260 | int _nc_init_pair( |
| 261 | SCREEN *sp, |
| 262 | int pair, |
| 263 | int f, |
| 264 | int b) |
| 265 | { return(*(int *)0); } |
| 266 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 267 | #undef init_pair_sp |
| 268 | int init_pair_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 269 | SCREEN *sp, |
| 270 | short pair, |
| 271 | short f, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 272 | short b) |
| 273 | { return(*(int *)0); } |
| 274 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 275 | #undef init_pair |
| 276 | int init_pair( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 277 | short pair, |
| 278 | short f, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 279 | short b) |
| 280 | { return(*(int *)0); } |
| 281 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 282 | #undef _nc_init_color |
| 283 | int _nc_init_color( |
| 284 | SCREEN *sp, |
| 285 | int color, |
| 286 | int r, |
| 287 | int g, |
| 288 | int b) |
| 289 | { return(*(int *)0); } |
| 290 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 291 | #undef init_color_sp |
| 292 | int init_color_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 293 | SCREEN *sp, |
| 294 | short color, |
| 295 | short r, |
| 296 | short g, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 297 | short b) |
| 298 | { return(*(int *)0); } |
| 299 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 300 | #undef init_color |
| 301 | int init_color( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 302 | short color, |
| 303 | short r, |
| 304 | short g, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 305 | short b) |
| 306 | { return(*(int *)0); } |
| 307 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 308 | #undef can_change_color_sp |
| 309 | NCURSES_BOOL can_change_color_sp( |
| 310 | SCREEN *sp) |
| 311 | { return(*(NCURSES_BOOL *)0); } |
| 312 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 313 | #undef can_change_color |
| 314 | NCURSES_BOOL can_change_color(void) |
| 315 | { return(*(NCURSES_BOOL *)0); } |
| 316 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 317 | #undef has_colors_sp |
| 318 | NCURSES_BOOL has_colors_sp( |
| 319 | SCREEN *sp) |
| 320 | { return(*(NCURSES_BOOL *)0); } |
| 321 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 322 | #undef has_colors |
| 323 | NCURSES_BOOL has_colors(void) |
| 324 | { return(*(NCURSES_BOOL *)0); } |
| 325 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 326 | #undef color_content_sp |
| 327 | int color_content_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 328 | SCREEN *sp, |
| 329 | short color, |
| 330 | short *r, |
| 331 | short *g, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 332 | short *b) |
| 333 | { return(*(int *)0); } |
| 334 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 335 | #undef color_content |
| 336 | int color_content( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 337 | short color, |
| 338 | short *r, |
| 339 | short *g, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 340 | short *b) |
| 341 | { return(*(int *)0); } |
| 342 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 343 | #undef _nc_pair_content |
| 344 | int _nc_pair_content( |
| 345 | SCREEN *sp, |
| 346 | int pair, |
| 347 | int *f, |
| 348 | int *b) |
| 349 | { return(*(int *)0); } |
| 350 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 351 | #undef pair_content_sp |
| 352 | int pair_content_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 353 | SCREEN *sp, |
| 354 | short pair, |
| 355 | short *f, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 356 | short *b) |
| 357 | { return(*(int *)0); } |
| 358 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 359 | #undef pair_content |
| 360 | int pair_content( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 361 | short pair, |
| 362 | short *f, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 363 | short *b) |
| 364 | { return(*(int *)0); } |
| 365 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 366 | #undef _nc_do_color_sp |
| 367 | void _nc_do_color_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 368 | SCREEN *sp, |
| 369 | int old_pair, |
| 370 | int pair, |
| 371 | int reverse, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 372 | NCURSES_OUTC_sp outc) |
| 373 | { /* void */ } |
| 374 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 375 | #undef _nc_do_color |
| 376 | void _nc_do_color( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 377 | int old_pair, |
| 378 | int pair, |
| 379 | int reverse, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 380 | NCURSES_OUTC outc) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 381 | { /* void */ } |
| 382 | |
| 383 | /* ./base/lib_colorset.c */ |
| 384 | |
| 385 | #undef wcolor_set |
| 386 | int wcolor_set( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 387 | WINDOW *win, |
| 388 | short pair_arg, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 389 | void *opts) |
| 390 | { return(*(int *)0); } |
| 391 | |
| 392 | /* ./base/lib_delch.c */ |
| 393 | |
| 394 | #undef wdelch |
| 395 | int wdelch( |
| 396 | WINDOW *win) |
| 397 | { return(*(int *)0); } |
| 398 | |
| 399 | /* ./base/lib_delwin.c */ |
| 400 | |
| 401 | #undef delwin |
| 402 | int delwin( |
| 403 | WINDOW *win) |
| 404 | { return(*(int *)0); } |
| 405 | |
| 406 | /* ./base/lib_echo.c */ |
| 407 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 408 | #undef echo_sp |
| 409 | int echo_sp( |
| 410 | SCREEN *sp) |
| 411 | { return(*(int *)0); } |
| 412 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 413 | #undef echo |
| 414 | int echo(void) |
| 415 | { return(*(int *)0); } |
| 416 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 417 | #undef noecho_sp |
| 418 | int noecho_sp( |
| 419 | SCREEN *sp) |
| 420 | { return(*(int *)0); } |
| 421 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 422 | #undef noecho |
| 423 | int noecho(void) |
| 424 | { return(*(int *)0); } |
| 425 | |
| 426 | /* ./base/lib_endwin.c */ |
| 427 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 428 | #undef endwin_sp |
| 429 | int endwin_sp( |
| 430 | SCREEN *sp) |
| 431 | { return(*(int *)0); } |
| 432 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 433 | #undef endwin |
| 434 | int endwin(void) |
| 435 | { return(*(int *)0); } |
| 436 | |
| 437 | /* ./base/lib_erase.c */ |
| 438 | |
| 439 | #undef werase |
| 440 | int werase( |
| 441 | WINDOW *win) |
| 442 | { return(*(int *)0); } |
| 443 | |
| 444 | /* ./base/lib_flash.c */ |
| 445 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 446 | #undef flash_sp |
| 447 | int flash_sp( |
| 448 | SCREEN *sp) |
| 449 | { return(*(int *)0); } |
| 450 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 451 | #undef flash |
| 452 | int flash(void) |
| 453 | { return(*(int *)0); } |
| 454 | |
| 455 | /* ./lib_gen.c */ |
| 456 | |
| 457 | #undef addch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 458 | int addch( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 459 | const chtype z) |
| 460 | { return(*(int *)0); } |
| 461 | |
| 462 | #undef addchnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 463 | int addchnstr( |
| 464 | const chtype *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 465 | int z) |
| 466 | { return(*(int *)0); } |
| 467 | |
| 468 | #undef addchstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 469 | int addchstr( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 470 | const chtype *z) |
| 471 | { return(*(int *)0); } |
| 472 | |
| 473 | #undef addnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 474 | int addnstr( |
| 475 | const char *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 476 | int z) |
| 477 | { return(*(int *)0); } |
| 478 | |
| 479 | #undef addstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 480 | int addstr( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 481 | const char *z) |
| 482 | { return(*(int *)0); } |
| 483 | |
| 484 | #undef attroff |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 485 | int attroff( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 486 | NCURSES_ATTR_T z) |
| 487 | { return(*(int *)0); } |
| 488 | |
| 489 | #undef attron |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 490 | int attron( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 491 | NCURSES_ATTR_T z) |
| 492 | { return(*(int *)0); } |
| 493 | |
| 494 | #undef attrset |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 495 | int attrset( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 496 | NCURSES_ATTR_T z) |
| 497 | { return(*(int *)0); } |
| 498 | |
| 499 | #undef attr_get |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 500 | int attr_get( |
| 501 | attr_t *a1, |
| 502 | short *a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 503 | void *z) |
| 504 | { return(*(int *)0); } |
| 505 | |
| 506 | #undef attr_off |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 507 | int attr_off( |
| 508 | attr_t a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 509 | void *z) |
| 510 | { return(*(int *)0); } |
| 511 | |
| 512 | #undef attr_on |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 513 | int attr_on( |
| 514 | attr_t a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 515 | void *z) |
| 516 | { return(*(int *)0); } |
| 517 | |
| 518 | #undef attr_set |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 519 | int attr_set( |
| 520 | attr_t a1, |
| 521 | short a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 522 | void *z) |
| 523 | { return(*(int *)0); } |
| 524 | |
| 525 | #undef bkgd |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 526 | int bkgd( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 527 | chtype z) |
| 528 | { return(*(int *)0); } |
| 529 | |
| 530 | #undef bkgdset |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 531 | void bkgdset( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 532 | chtype z) |
| 533 | { /* void */ } |
| 534 | |
| 535 | #undef border |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 536 | int border( |
| 537 | chtype a1, |
| 538 | chtype a2, |
| 539 | chtype a3, |
| 540 | chtype a4, |
| 541 | chtype a5, |
| 542 | chtype a6, |
| 543 | chtype a7, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 544 | chtype z) |
| 545 | { return(*(int *)0); } |
| 546 | |
| 547 | #undef box |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 548 | int box( |
| 549 | WINDOW *a1, |
| 550 | chtype a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 551 | chtype z) |
| 552 | { return(*(int *)0); } |
| 553 | |
| 554 | #undef chgat |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 555 | int chgat( |
| 556 | int a1, |
| 557 | attr_t a2, |
| 558 | short a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 559 | const void *z) |
| 560 | { return(*(int *)0); } |
| 561 | |
| 562 | #undef clear |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 563 | int clear(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 564 | { return(*(int *)0); } |
| 565 | |
| 566 | #undef clrtobot |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 567 | int clrtobot(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 568 | { return(*(int *)0); } |
| 569 | |
| 570 | #undef clrtoeol |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 571 | int clrtoeol(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 572 | { return(*(int *)0); } |
| 573 | |
| 574 | #undef color_set |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 575 | int color_set( |
| 576 | short a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 577 | void *z) |
| 578 | { return(*(int *)0); } |
| 579 | |
| 580 | #undef COLOR_PAIR |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 581 | int COLOR_PAIR( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 582 | int z) |
| 583 | { return(*(int *)0); } |
| 584 | |
| 585 | #undef delch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 586 | int delch(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 587 | { return(*(int *)0); } |
| 588 | |
| 589 | #undef deleteln |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 590 | int deleteln(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 591 | { return(*(int *)0); } |
| 592 | |
| 593 | #undef echochar |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 594 | int echochar( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 595 | const chtype z) |
| 596 | { return(*(int *)0); } |
| 597 | |
| 598 | #undef erase |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 599 | int erase(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 600 | { return(*(int *)0); } |
| 601 | |
| 602 | #undef getbkgd |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 603 | chtype getbkgd( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 604 | WINDOW *z) |
| 605 | { return(*(chtype *)0); } |
| 606 | |
| 607 | #undef getch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 608 | int getch(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 609 | { return(*(int *)0); } |
| 610 | |
| 611 | #undef getnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 612 | int getnstr( |
| 613 | char *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 614 | int z) |
| 615 | { return(*(int *)0); } |
| 616 | |
| 617 | #undef getstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 618 | int getstr( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 619 | char *z) |
| 620 | { return(*(int *)0); } |
| 621 | |
| 622 | #undef hline |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 623 | int hline( |
| 624 | chtype a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 625 | int z) |
| 626 | { return(*(int *)0); } |
| 627 | |
| 628 | #undef inch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 629 | chtype inch(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 630 | { return(*(chtype *)0); } |
| 631 | |
| 632 | #undef inchnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 633 | int inchnstr( |
| 634 | chtype *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 635 | int z) |
| 636 | { return(*(int *)0); } |
| 637 | |
| 638 | #undef inchstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 639 | int inchstr( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 640 | chtype *z) |
| 641 | { return(*(int *)0); } |
| 642 | |
| 643 | #undef innstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 644 | int innstr( |
| 645 | char *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 646 | int z) |
| 647 | { return(*(int *)0); } |
| 648 | |
| 649 | #undef insch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 650 | int insch( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 651 | chtype z) |
| 652 | { return(*(int *)0); } |
| 653 | |
| 654 | #undef insdelln |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 655 | int insdelln( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 656 | int z) |
| 657 | { return(*(int *)0); } |
| 658 | |
| 659 | #undef insertln |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 660 | int insertln(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 661 | { return(*(int *)0); } |
| 662 | |
| 663 | #undef insnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 664 | int insnstr( |
| 665 | const char *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 666 | int z) |
| 667 | { return(*(int *)0); } |
| 668 | |
| 669 | #undef insstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 670 | int insstr( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 671 | const char *z) |
| 672 | { return(*(int *)0); } |
| 673 | |
| 674 | #undef instr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 675 | int instr( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 676 | char *z) |
| 677 | { return(*(int *)0); } |
| 678 | |
| 679 | #undef move |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 680 | int move( |
| 681 | int a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 682 | int z) |
| 683 | { return(*(int *)0); } |
| 684 | |
| 685 | #undef mvaddch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 686 | int mvaddch( |
| 687 | int a1, |
| 688 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 689 | const chtype z) |
| 690 | { return(*(int *)0); } |
| 691 | |
| 692 | #undef mvaddchnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 693 | int mvaddchnstr( |
| 694 | int a1, |
| 695 | int a2, |
| 696 | const chtype *a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 697 | int z) |
| 698 | { return(*(int *)0); } |
| 699 | |
| 700 | #undef mvaddchstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 701 | int mvaddchstr( |
| 702 | int a1, |
| 703 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 704 | const chtype *z) |
| 705 | { return(*(int *)0); } |
| 706 | |
| 707 | #undef mvaddnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 708 | int mvaddnstr( |
| 709 | int a1, |
| 710 | int a2, |
| 711 | const char *a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 712 | int z) |
| 713 | { return(*(int *)0); } |
| 714 | |
| 715 | #undef mvaddstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 716 | int mvaddstr( |
| 717 | int a1, |
| 718 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 719 | const char *z) |
| 720 | { return(*(int *)0); } |
| 721 | |
| 722 | #undef mvchgat |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 723 | int mvchgat( |
| 724 | int a1, |
| 725 | int a2, |
| 726 | int a3, |
| 727 | attr_t a4, |
| 728 | short a5, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 729 | const void *z) |
| 730 | { return(*(int *)0); } |
| 731 | |
| 732 | #undef mvdelch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 733 | int mvdelch( |
| 734 | int a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 735 | int z) |
| 736 | { return(*(int *)0); } |
| 737 | |
| 738 | #undef mvgetch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 739 | int mvgetch( |
| 740 | int a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 741 | int z) |
| 742 | { return(*(int *)0); } |
| 743 | |
| 744 | #undef mvgetnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 745 | int mvgetnstr( |
| 746 | int a1, |
| 747 | int a2, |
| 748 | char *a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 749 | int z) |
| 750 | { return(*(int *)0); } |
| 751 | |
| 752 | #undef mvgetstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 753 | int mvgetstr( |
| 754 | int a1, |
| 755 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 756 | char *z) |
| 757 | { return(*(int *)0); } |
| 758 | |
| 759 | #undef mvhline |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 760 | int mvhline( |
| 761 | int a1, |
| 762 | int a2, |
| 763 | chtype a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 764 | int z) |
| 765 | { return(*(int *)0); } |
| 766 | |
| 767 | #undef mvinch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 768 | chtype mvinch( |
| 769 | int a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 770 | int z) |
| 771 | { return(*(chtype *)0); } |
| 772 | |
| 773 | #undef mvinchnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 774 | int mvinchnstr( |
| 775 | int a1, |
| 776 | int a2, |
| 777 | chtype *a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 778 | int z) |
| 779 | { return(*(int *)0); } |
| 780 | |
| 781 | #undef mvinchstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 782 | int mvinchstr( |
| 783 | int a1, |
| 784 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 785 | chtype *z) |
| 786 | { return(*(int *)0); } |
| 787 | |
| 788 | #undef mvinnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 789 | int mvinnstr( |
| 790 | int a1, |
| 791 | int a2, |
| 792 | char *a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 793 | int z) |
| 794 | { return(*(int *)0); } |
| 795 | |
| 796 | #undef mvinsch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 797 | int mvinsch( |
| 798 | int a1, |
| 799 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 800 | chtype z) |
| 801 | { return(*(int *)0); } |
| 802 | |
| 803 | #undef mvinsnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 804 | int mvinsnstr( |
| 805 | int a1, |
| 806 | int a2, |
| 807 | const char *a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 808 | int z) |
| 809 | { return(*(int *)0); } |
| 810 | |
| 811 | #undef mvinsstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 812 | int mvinsstr( |
| 813 | int a1, |
| 814 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 815 | const char *z) |
| 816 | { return(*(int *)0); } |
| 817 | |
| 818 | #undef mvinstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 819 | int mvinstr( |
| 820 | int a1, |
| 821 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 822 | char *z) |
| 823 | { return(*(int *)0); } |
| 824 | |
| 825 | #undef mvvline |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 826 | int mvvline( |
| 827 | int a1, |
| 828 | int a2, |
| 829 | chtype a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 830 | int z) |
| 831 | { return(*(int *)0); } |
| 832 | |
| 833 | #undef mvwaddch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 834 | int mvwaddch( |
| 835 | WINDOW *a1, |
| 836 | int a2, |
| 837 | int a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 838 | const chtype z) |
| 839 | { return(*(int *)0); } |
| 840 | |
| 841 | #undef mvwaddchnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 842 | int mvwaddchnstr( |
| 843 | WINDOW *a1, |
| 844 | int a2, |
| 845 | int a3, |
| 846 | const chtype *a4, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 847 | int z) |
| 848 | { return(*(int *)0); } |
| 849 | |
| 850 | #undef mvwaddchstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 851 | int mvwaddchstr( |
| 852 | WINDOW *a1, |
| 853 | int a2, |
| 854 | int a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 855 | const chtype *z) |
| 856 | { return(*(int *)0); } |
| 857 | |
| 858 | #undef mvwaddnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 859 | int mvwaddnstr( |
| 860 | WINDOW *a1, |
| 861 | int a2, |
| 862 | int a3, |
| 863 | const char *a4, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 864 | int z) |
| 865 | { return(*(int *)0); } |
| 866 | |
| 867 | #undef mvwaddstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 868 | int mvwaddstr( |
| 869 | WINDOW *a1, |
| 870 | int a2, |
| 871 | int a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 872 | const char *z) |
| 873 | { return(*(int *)0); } |
| 874 | |
| 875 | #undef mvwchgat |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 876 | int mvwchgat( |
| 877 | WINDOW *a1, |
| 878 | int a2, |
| 879 | int a3, |
| 880 | int a4, |
| 881 | attr_t a5, |
| 882 | short a6, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 883 | const void *z) |
| 884 | { return(*(int *)0); } |
| 885 | |
| 886 | #undef mvwdelch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 887 | int mvwdelch( |
| 888 | WINDOW *a1, |
| 889 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 890 | int z) |
| 891 | { return(*(int *)0); } |
| 892 | |
| 893 | #undef mvwgetch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 894 | int mvwgetch( |
| 895 | WINDOW *a1, |
| 896 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 897 | int z) |
| 898 | { return(*(int *)0); } |
| 899 | |
| 900 | #undef mvwgetnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 901 | int mvwgetnstr( |
| 902 | WINDOW *a1, |
| 903 | int a2, |
| 904 | int a3, |
| 905 | char *a4, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 906 | int z) |
| 907 | { return(*(int *)0); } |
| 908 | |
| 909 | #undef mvwgetstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 910 | int mvwgetstr( |
| 911 | WINDOW *a1, |
| 912 | int a2, |
| 913 | int a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 914 | char *z) |
| 915 | { return(*(int *)0); } |
| 916 | |
| 917 | #undef mvwhline |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 918 | int mvwhline( |
| 919 | WINDOW *a1, |
| 920 | int a2, |
| 921 | int a3, |
| 922 | chtype a4, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 923 | int z) |
| 924 | { return(*(int *)0); } |
| 925 | |
| 926 | #undef mvwinch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 927 | chtype mvwinch( |
| 928 | WINDOW *a1, |
| 929 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 930 | int z) |
| 931 | { return(*(chtype *)0); } |
| 932 | |
| 933 | #undef mvwinchnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 934 | int mvwinchnstr( |
| 935 | WINDOW *a1, |
| 936 | int a2, |
| 937 | int a3, |
| 938 | chtype *a4, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 939 | int z) |
| 940 | { return(*(int *)0); } |
| 941 | |
| 942 | #undef mvwinchstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 943 | int mvwinchstr( |
| 944 | WINDOW *a1, |
| 945 | int a2, |
| 946 | int a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 947 | chtype *z) |
| 948 | { return(*(int *)0); } |
| 949 | |
| 950 | #undef mvwinnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 951 | int mvwinnstr( |
| 952 | WINDOW *a1, |
| 953 | int a2, |
| 954 | int a3, |
| 955 | char *a4, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 956 | int z) |
| 957 | { return(*(int *)0); } |
| 958 | |
| 959 | #undef mvwinsch |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 960 | int mvwinsch( |
| 961 | WINDOW *a1, |
| 962 | int a2, |
| 963 | int a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 964 | chtype z) |
| 965 | { return(*(int *)0); } |
| 966 | |
| 967 | #undef mvwinsnstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 968 | int mvwinsnstr( |
| 969 | WINDOW *a1, |
| 970 | int a2, |
| 971 | int a3, |
| 972 | const char *a4, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 973 | int z) |
| 974 | { return(*(int *)0); } |
| 975 | |
| 976 | #undef mvwinsstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 977 | int mvwinsstr( |
| 978 | WINDOW *a1, |
| 979 | int a2, |
| 980 | int a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 981 | const char *z) |
| 982 | { return(*(int *)0); } |
| 983 | |
| 984 | #undef mvwinstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 985 | int mvwinstr( |
| 986 | WINDOW *a1, |
| 987 | int a2, |
| 988 | int a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 989 | char *z) |
| 990 | { return(*(int *)0); } |
| 991 | |
| 992 | #undef mvwvline |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 993 | int mvwvline( |
| 994 | WINDOW *a1, |
| 995 | int a2, |
| 996 | int a3, |
| 997 | chtype a4, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 998 | int z) |
| 999 | { return(*(int *)0); } |
| 1000 | |
| 1001 | #undef PAIR_NUMBER |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1002 | int PAIR_NUMBER( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1003 | int z) |
| 1004 | { return(*(int *)0); } |
| 1005 | |
| 1006 | #undef redrawwin |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1007 | int redrawwin( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1008 | WINDOW *z) |
| 1009 | { return(*(int *)0); } |
| 1010 | |
| 1011 | #undef refresh |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1012 | int refresh(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1013 | { return(*(int *)0); } |
| 1014 | |
| 1015 | #undef scrl |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1016 | int scrl( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1017 | int z) |
| 1018 | { return(*(int *)0); } |
| 1019 | |
| 1020 | #undef scroll |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1021 | int scroll( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1022 | WINDOW *z) |
| 1023 | { return(*(int *)0); } |
| 1024 | |
| 1025 | #undef setscrreg |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1026 | int setscrreg( |
| 1027 | int a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1028 | int z) |
| 1029 | { return(*(int *)0); } |
| 1030 | |
| 1031 | #undef standout |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1032 | int standout(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1033 | { return(*(int *)0); } |
| 1034 | |
| 1035 | #undef standend |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1036 | int standend(void) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1037 | { return(*(int *)0); } |
| 1038 | |
| 1039 | #undef timeout |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1040 | void timeout( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1041 | int z) |
| 1042 | { /* void */ } |
| 1043 | |
| 1044 | #undef touchline |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1045 | int touchline( |
| 1046 | WINDOW *a1, |
| 1047 | int a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1048 | int z) |
| 1049 | { return(*(int *)0); } |
| 1050 | |
| 1051 | #undef touchwin |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1052 | int touchwin( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1053 | WINDOW *z) |
| 1054 | { return(*(int *)0); } |
| 1055 | |
| 1056 | #undef untouchwin |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1057 | int untouchwin( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1058 | WINDOW *z) |
| 1059 | { return(*(int *)0); } |
| 1060 | |
| 1061 | #undef vline |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1062 | int vline( |
| 1063 | chtype a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1064 | int z) |
| 1065 | { return(*(int *)0); } |
| 1066 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1067 | #undef waddchstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1068 | int waddchstr( |
| 1069 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1070 | const chtype *z) |
| 1071 | { return(*(int *)0); } |
| 1072 | |
| 1073 | #undef waddstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1074 | int waddstr( |
| 1075 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1076 | const char *z) |
| 1077 | { return(*(int *)0); } |
| 1078 | |
| 1079 | #undef wattron |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1080 | int wattron( |
| 1081 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1082 | int z) |
| 1083 | { return(*(int *)0); } |
| 1084 | |
| 1085 | #undef wattroff |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1086 | int wattroff( |
| 1087 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1088 | int z) |
| 1089 | { return(*(int *)0); } |
| 1090 | |
| 1091 | #undef wattrset |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1092 | int wattrset( |
| 1093 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1094 | int z) |
| 1095 | { return(*(int *)0); } |
| 1096 | |
| 1097 | #undef wattr_get |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1098 | int wattr_get( |
| 1099 | WINDOW *a1, |
| 1100 | attr_t *a2, |
| 1101 | short *a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1102 | void *z) |
| 1103 | { return(*(int *)0); } |
| 1104 | |
| 1105 | #undef wattr_set |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1106 | int wattr_set( |
| 1107 | WINDOW *a1, |
| 1108 | attr_t a2, |
| 1109 | short a3, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1110 | void *z) |
| 1111 | { return(*(int *)0); } |
| 1112 | |
| 1113 | #undef wdeleteln |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1114 | int wdeleteln( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1115 | WINDOW *z) |
| 1116 | { return(*(int *)0); } |
| 1117 | |
| 1118 | #undef wgetstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1119 | int wgetstr( |
| 1120 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1121 | char *z) |
| 1122 | { return(*(int *)0); } |
| 1123 | |
| 1124 | #undef winchstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1125 | int winchstr( |
| 1126 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1127 | chtype *z) |
| 1128 | { return(*(int *)0); } |
| 1129 | |
| 1130 | #undef winsertln |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1131 | int winsertln( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1132 | WINDOW *z) |
| 1133 | { return(*(int *)0); } |
| 1134 | |
| 1135 | #undef winsstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1136 | int winsstr( |
| 1137 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1138 | const char *z) |
| 1139 | { return(*(int *)0); } |
| 1140 | |
| 1141 | #undef winstr |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1142 | int winstr( |
| 1143 | WINDOW *a1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1144 | char *z) |
| 1145 | { return(*(int *)0); } |
| 1146 | |
| 1147 | #undef wstandout |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1148 | int wstandout( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1149 | WINDOW *z) |
| 1150 | { return(*(int *)0); } |
| 1151 | |
| 1152 | #undef wstandend |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1153 | int wstandend( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1154 | WINDOW *z) |
| 1155 | { return(*(int *)0); } |
| 1156 | |
| 1157 | #undef getattrs |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1158 | int getattrs( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1159 | const WINDOW *z) |
| 1160 | { return(*(int *)0); } |
| 1161 | |
| 1162 | #undef getcurx |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1163 | int getcurx( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1164 | const WINDOW *z) |
| 1165 | { return(*(int *)0); } |
| 1166 | |
| 1167 | #undef getcury |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1168 | int getcury( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1169 | const WINDOW *z) |
| 1170 | { return(*(int *)0); } |
| 1171 | |
| 1172 | #undef getbegx |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1173 | int getbegx( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1174 | const WINDOW *z) |
| 1175 | { return(*(int *)0); } |
| 1176 | |
| 1177 | #undef getbegy |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1178 | int getbegy( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1179 | const WINDOW *z) |
| 1180 | { return(*(int *)0); } |
| 1181 | |
| 1182 | #undef getmaxx |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1183 | int getmaxx( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1184 | const WINDOW *z) |
| 1185 | { return(*(int *)0); } |
| 1186 | |
| 1187 | #undef getmaxy |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1188 | int getmaxy( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1189 | const WINDOW *z) |
| 1190 | { return(*(int *)0); } |
| 1191 | |
| 1192 | #undef getparx |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1193 | int getparx( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1194 | const WINDOW *z) |
| 1195 | { return(*(int *)0); } |
| 1196 | |
| 1197 | #undef getpary |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1198 | int getpary( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1199 | const WINDOW *z) |
| 1200 | { return(*(int *)0); } |
| 1201 | |
| 1202 | #undef wgetparent |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1203 | WINDOW *wgetparent( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1204 | const WINDOW *z) |
| 1205 | { return(*(WINDOW **)0); } |
| 1206 | |
| 1207 | #undef is_cleared |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1208 | NCURSES_BOOL is_cleared( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1209 | const WINDOW *z) |
| 1210 | { return(*(NCURSES_BOOL *)0); } |
| 1211 | |
| 1212 | #undef is_idcok |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1213 | NCURSES_BOOL is_idcok( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1214 | const WINDOW *z) |
| 1215 | { return(*(NCURSES_BOOL *)0); } |
| 1216 | |
| 1217 | #undef is_idlok |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1218 | NCURSES_BOOL is_idlok( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1219 | const WINDOW *z) |
| 1220 | { return(*(NCURSES_BOOL *)0); } |
| 1221 | |
| 1222 | #undef is_immedok |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1223 | NCURSES_BOOL is_immedok( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1224 | const WINDOW *z) |
| 1225 | { return(*(NCURSES_BOOL *)0); } |
| 1226 | |
| 1227 | #undef is_keypad |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1228 | NCURSES_BOOL is_keypad( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1229 | const WINDOW *z) |
| 1230 | { return(*(NCURSES_BOOL *)0); } |
| 1231 | |
| 1232 | #undef is_leaveok |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1233 | NCURSES_BOOL is_leaveok( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1234 | const WINDOW *z) |
| 1235 | { return(*(NCURSES_BOOL *)0); } |
| 1236 | |
| 1237 | #undef is_nodelay |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1238 | NCURSES_BOOL is_nodelay( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1239 | const WINDOW *z) |
| 1240 | { return(*(NCURSES_BOOL *)0); } |
| 1241 | |
| 1242 | #undef is_notimeout |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1243 | NCURSES_BOOL is_notimeout( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1244 | const WINDOW *z) |
| 1245 | { return(*(NCURSES_BOOL *)0); } |
| 1246 | |
| 1247 | #undef is_pad |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1248 | NCURSES_BOOL is_pad( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1249 | const WINDOW *z) |
| 1250 | { return(*(NCURSES_BOOL *)0); } |
| 1251 | |
| 1252 | #undef is_scrollok |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1253 | NCURSES_BOOL is_scrollok( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1254 | const WINDOW *z) |
| 1255 | { return(*(NCURSES_BOOL *)0); } |
| 1256 | |
| 1257 | #undef is_subwin |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1258 | NCURSES_BOOL is_subwin( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1259 | const WINDOW *z) |
| 1260 | { return(*(NCURSES_BOOL *)0); } |
| 1261 | |
| 1262 | #undef is_syncok |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1263 | NCURSES_BOOL is_syncok( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1264 | const WINDOW *z) |
| 1265 | { return(*(NCURSES_BOOL *)0); } |
| 1266 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1267 | #undef wgetdelay |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1268 | int wgetdelay( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1269 | const WINDOW *z) |
| 1270 | { return(*(int *)0); } |
| 1271 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1272 | #undef wgetscrreg |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1273 | int wgetscrreg( |
| 1274 | const WINDOW *a1, |
| 1275 | int *a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1276 | int *z) |
| 1277 | { return(*(int *)0); } |
| 1278 | |
| 1279 | #undef mouse_trafo |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1280 | NCURSES_BOOL mouse_trafo( |
| 1281 | int *a1, |
| 1282 | int *a2, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1283 | NCURSES_BOOL z) |
| 1284 | { return(*(NCURSES_BOOL *)0); } |
| 1285 | |
| 1286 | /* ./base/lib_getch.c */ |
| 1287 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1288 | #undef _nc_ESCDELAY |
| 1289 | int _nc_ESCDELAY(void) |
| 1290 | { return(*(int *)0); } |
| 1291 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1292 | #undef _nc_ptr_Escdelay |
| 1293 | int *_nc_ptr_Escdelay( |
| 1294 | SCREEN *sp) |
| 1295 | { return(*(int **)0); } |
| 1296 | |
| 1297 | #undef set_escdelay_sp |
| 1298 | int set_escdelay_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1299 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1300 | int value) |
| 1301 | { return(*(int *)0); } |
| 1302 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1303 | #undef set_escdelay |
| 1304 | int set_escdelay( |
| 1305 | int value) |
| 1306 | { return(*(int *)0); } |
| 1307 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1308 | #undef get_escdelay_sp |
| 1309 | int get_escdelay_sp( |
| 1310 | SCREEN *sp) |
| 1311 | { return(*(int *)0); } |
| 1312 | |
| 1313 | #undef get_escdelay |
| 1314 | int get_escdelay(void) |
| 1315 | { return(*(int *)0); } |
| 1316 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1317 | #undef _nc_wgetch |
| 1318 | int _nc_wgetch( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1319 | WINDOW *win, |
| 1320 | int *result, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1321 | int use_meta) |
| 1322 | { return(*(int *)0); } |
| 1323 | |
| 1324 | #undef wgetch |
| 1325 | int wgetch( |
| 1326 | WINDOW *win) |
| 1327 | { return(*(int *)0); } |
| 1328 | |
| 1329 | /* ./base/lib_getstr.c */ |
| 1330 | |
| 1331 | #undef wgetnstr |
| 1332 | int wgetnstr( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1333 | WINDOW *win, |
| 1334 | char *str, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1335 | int maxlen) |
| 1336 | { return(*(int *)0); } |
| 1337 | |
| 1338 | /* ./base/lib_hline.c */ |
| 1339 | |
| 1340 | #undef whline |
| 1341 | int whline( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1342 | WINDOW *win, |
| 1343 | chtype ch, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1344 | int n) |
| 1345 | { return(*(int *)0); } |
| 1346 | |
| 1347 | /* ./base/lib_immedok.c */ |
| 1348 | |
| 1349 | #undef immedok |
| 1350 | void immedok( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1351 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1352 | NCURSES_BOOL flag) |
| 1353 | { /* void */ } |
| 1354 | |
| 1355 | /* ./base/lib_inchstr.c */ |
| 1356 | |
| 1357 | #undef winchnstr |
| 1358 | int winchnstr( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1359 | WINDOW *win, |
| 1360 | chtype *str, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1361 | int n) |
| 1362 | { return(*(int *)0); } |
| 1363 | |
| 1364 | /* ./base/lib_initscr.c */ |
| 1365 | |
| 1366 | #undef initscr |
| 1367 | WINDOW *initscr(void) |
| 1368 | { return(*(WINDOW **)0); } |
| 1369 | |
| 1370 | /* ./base/lib_insch.c */ |
| 1371 | |
| 1372 | #undef _nc_insert_ch |
| 1373 | int _nc_insert_ch( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1374 | SCREEN *sp, |
| 1375 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1376 | chtype ch) |
| 1377 | { return(*(int *)0); } |
| 1378 | |
| 1379 | #undef winsch |
| 1380 | int winsch( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1381 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1382 | chtype c) |
| 1383 | { return(*(int *)0); } |
| 1384 | |
| 1385 | /* ./base/lib_insdel.c */ |
| 1386 | |
| 1387 | #undef winsdelln |
| 1388 | int winsdelln( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1389 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1390 | int n) |
| 1391 | { return(*(int *)0); } |
| 1392 | |
| 1393 | /* ./base/lib_insnstr.c */ |
| 1394 | |
| 1395 | #undef winsnstr |
| 1396 | int winsnstr( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1397 | WINDOW *win, |
| 1398 | const char *s, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1399 | int n) |
| 1400 | { return(*(int *)0); } |
| 1401 | |
| 1402 | /* ./base/lib_instr.c */ |
| 1403 | |
| 1404 | #undef winnstr |
| 1405 | int winnstr( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1406 | WINDOW *win, |
| 1407 | char *str, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1408 | int n) |
| 1409 | { return(*(int *)0); } |
| 1410 | |
| 1411 | /* ./base/lib_isendwin.c */ |
| 1412 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1413 | #undef isendwin_sp |
| 1414 | NCURSES_BOOL isendwin_sp( |
| 1415 | SCREEN *sp) |
| 1416 | { return(*(NCURSES_BOOL *)0); } |
| 1417 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1418 | #undef isendwin |
| 1419 | NCURSES_BOOL isendwin(void) |
| 1420 | { return(*(NCURSES_BOOL *)0); } |
| 1421 | |
| 1422 | /* ./base/lib_leaveok.c */ |
| 1423 | |
| 1424 | #undef leaveok |
| 1425 | int leaveok( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1426 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1427 | NCURSES_BOOL flag) |
| 1428 | { return(*(int *)0); } |
| 1429 | |
| 1430 | /* ./base/lib_mouse.c */ |
| 1431 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1432 | #undef getmouse_sp |
| 1433 | int getmouse_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1434 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1435 | MEVENT *aevent) |
| 1436 | { return(*(int *)0); } |
| 1437 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1438 | #undef getmouse |
| 1439 | int getmouse( |
| 1440 | MEVENT *aevent) |
| 1441 | { return(*(int *)0); } |
| 1442 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1443 | #undef ungetmouse_sp |
| 1444 | int ungetmouse_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1445 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1446 | MEVENT *aevent) |
| 1447 | { return(*(int *)0); } |
| 1448 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1449 | #undef ungetmouse |
| 1450 | int ungetmouse( |
| 1451 | MEVENT *aevent) |
| 1452 | { return(*(int *)0); } |
| 1453 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1454 | #undef mousemask_sp |
| 1455 | mmask_t mousemask_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1456 | SCREEN *sp, |
| 1457 | mmask_t newmask, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1458 | mmask_t *oldmask) |
| 1459 | { return(*(mmask_t *)0); } |
| 1460 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1461 | #undef mousemask |
| 1462 | mmask_t mousemask( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1463 | mmask_t newmask, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1464 | mmask_t *oldmask) |
| 1465 | { return(*(mmask_t *)0); } |
| 1466 | |
| 1467 | #undef wenclose |
| 1468 | NCURSES_BOOL wenclose( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1469 | const WINDOW *win, |
| 1470 | int y, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1471 | int x) |
| 1472 | { return(*(NCURSES_BOOL *)0); } |
| 1473 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1474 | #undef mouseinterval_sp |
| 1475 | int mouseinterval_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1476 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1477 | int maxclick) |
| 1478 | { return(*(int *)0); } |
| 1479 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1480 | #undef mouseinterval |
| 1481 | int mouseinterval( |
| 1482 | int maxclick) |
| 1483 | { return(*(int *)0); } |
| 1484 | |
| 1485 | #undef _nc_has_mouse |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1486 | NCURSES_BOOL _nc_has_mouse( |
| 1487 | SCREEN *sp) |
| 1488 | { return(*(NCURSES_BOOL *)0); } |
| 1489 | |
| 1490 | #undef has_mouse_sp |
| 1491 | NCURSES_BOOL has_mouse_sp( |
| 1492 | SCREEN *sp) |
| 1493 | { return(*(NCURSES_BOOL *)0); } |
| 1494 | |
| 1495 | #undef has_mouse |
| 1496 | NCURSES_BOOL has_mouse(void) |
| 1497 | { return(*(NCURSES_BOOL *)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1498 | |
| 1499 | #undef wmouse_trafo |
| 1500 | NCURSES_BOOL wmouse_trafo( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1501 | const WINDOW *win, |
| 1502 | int *pY, |
| 1503 | int *pX, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1504 | NCURSES_BOOL to_screen) |
| 1505 | { return(*(NCURSES_BOOL *)0); } |
| 1506 | |
| 1507 | /* ./base/lib_move.c */ |
| 1508 | |
| 1509 | #undef wmove |
| 1510 | int wmove( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1511 | WINDOW *win, |
| 1512 | int y, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1513 | int x) |
| 1514 | { return(*(int *)0); } |
| 1515 | |
| 1516 | /* ./tty/lib_mvcur.c */ |
| 1517 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1518 | #undef _nc_msec_cost_sp |
| 1519 | int _nc_msec_cost_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1520 | SCREEN *sp, |
| 1521 | const char *const cap, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1522 | int affcnt) |
| 1523 | { return(*(int *)0); } |
| 1524 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1525 | #undef _nc_msec_cost |
| 1526 | int _nc_msec_cost( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1527 | const char *const cap, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1528 | int affcnt) |
| 1529 | { return(*(int *)0); } |
| 1530 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1531 | #undef _nc_mvcur_resume_sp |
| 1532 | void _nc_mvcur_resume_sp( |
| 1533 | SCREEN *sp) |
| 1534 | { /* void */ } |
| 1535 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1536 | #undef _nc_mvcur_resume |
| 1537 | void _nc_mvcur_resume(void) |
| 1538 | { /* void */ } |
| 1539 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1540 | #undef _nc_mvcur_init_sp |
| 1541 | void _nc_mvcur_init_sp( |
| 1542 | SCREEN *sp) |
| 1543 | { /* void */ } |
| 1544 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1545 | #undef _nc_mvcur_init |
| 1546 | void _nc_mvcur_init(void) |
| 1547 | { /* void */ } |
| 1548 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1549 | #undef _nc_mvcur_wrap_sp |
| 1550 | void _nc_mvcur_wrap_sp( |
| 1551 | SCREEN *sp) |
| 1552 | { /* void */ } |
| 1553 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1554 | #undef _nc_mvcur_wrap |
| 1555 | void _nc_mvcur_wrap(void) |
| 1556 | { /* void */ } |
| 1557 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1558 | #undef _nc_mvcur_sp |
| 1559 | int _nc_mvcur_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1560 | SCREEN *sp, |
| 1561 | int yold, |
| 1562 | int xold, |
| 1563 | int ynew, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1564 | int xnew) |
| 1565 | { return(*(int *)0); } |
| 1566 | |
| 1567 | #undef _nc_mvcur |
| 1568 | int _nc_mvcur( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1569 | int yold, |
| 1570 | int xold, |
| 1571 | int ynew, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1572 | int xnew) |
| 1573 | { return(*(int *)0); } |
| 1574 | |
| 1575 | #undef mvcur_sp |
| 1576 | int mvcur_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1577 | SCREEN *sp, |
| 1578 | int yold, |
| 1579 | int xold, |
| 1580 | int ynew, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1581 | int xnew) |
| 1582 | { return(*(int *)0); } |
| 1583 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1584 | #undef mvcur |
| 1585 | int mvcur( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1586 | int yold, |
| 1587 | int xold, |
| 1588 | int ynew, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1589 | int xnew) |
| 1590 | { return(*(int *)0); } |
| 1591 | |
| 1592 | #undef _nc_optimize_enable |
| 1593 | int _nc_optimize_enable; |
| 1594 | |
| 1595 | /* ./base/lib_mvwin.c */ |
| 1596 | |
| 1597 | #undef mvwin |
| 1598 | int mvwin( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1599 | WINDOW *win, |
| 1600 | int by, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1601 | int bx) |
| 1602 | { return(*(int *)0); } |
| 1603 | |
| 1604 | /* ./base/lib_newterm.c */ |
| 1605 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1606 | #undef filter_sp |
| 1607 | void filter_sp( |
| 1608 | SCREEN *sp) |
| 1609 | { /* void */ } |
| 1610 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1611 | #undef filter |
| 1612 | void filter(void) |
| 1613 | { /* void */ } |
| 1614 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1615 | #undef nofilter_sp |
| 1616 | void nofilter_sp( |
| 1617 | SCREEN *sp) |
| 1618 | { /* void */ } |
| 1619 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1620 | #undef nofilter |
| 1621 | void nofilter(void) |
| 1622 | { /* void */ } |
| 1623 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1624 | #undef newterm_sp |
| 1625 | SCREEN *newterm_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1626 | SCREEN *sp, |
| 1627 | const char *name, |
| 1628 | FILE *ofp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1629 | FILE *ifp) |
| 1630 | { return(*(SCREEN **)0); } |
| 1631 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1632 | #undef newterm |
| 1633 | SCREEN *newterm( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1634 | const char *name, |
| 1635 | FILE *ofp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1636 | FILE *ifp) |
| 1637 | { return(*(SCREEN **)0); } |
| 1638 | |
| 1639 | /* ./base/lib_newwin.c */ |
| 1640 | |
| 1641 | #undef _nc_freewin |
| 1642 | int _nc_freewin( |
| 1643 | WINDOW *win) |
| 1644 | { return(*(int *)0); } |
| 1645 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1646 | #undef newwin_sp |
| 1647 | WINDOW *newwin_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1648 | SCREEN *sp, |
| 1649 | int num_lines, |
| 1650 | int num_columns, |
| 1651 | int begy, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1652 | int begx) |
| 1653 | { return(*(WINDOW **)0); } |
| 1654 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1655 | #undef newwin |
| 1656 | WINDOW *newwin( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1657 | int num_lines, |
| 1658 | int num_columns, |
| 1659 | int begy, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1660 | int begx) |
| 1661 | { return(*(WINDOW **)0); } |
| 1662 | |
| 1663 | #undef derwin |
| 1664 | WINDOW *derwin( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1665 | WINDOW *orig, |
| 1666 | int num_lines, |
| 1667 | int num_columns, |
| 1668 | int begy, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1669 | int begx) |
| 1670 | { return(*(WINDOW **)0); } |
| 1671 | |
| 1672 | #undef subwin |
| 1673 | WINDOW *subwin( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1674 | WINDOW *w, |
| 1675 | int l, |
| 1676 | int c, |
| 1677 | int y, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1678 | int x) |
| 1679 | { return(*(WINDOW **)0); } |
| 1680 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1681 | #undef _nc_makenew_sp |
| 1682 | WINDOW *_nc_makenew_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1683 | SCREEN *sp, |
| 1684 | int num_lines, |
| 1685 | int num_columns, |
| 1686 | int begy, |
| 1687 | int begx, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1688 | int flags) |
| 1689 | { return(*(WINDOW **)0); } |
| 1690 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1691 | #undef _nc_curscr_of |
| 1692 | WINDOW *_nc_curscr_of( |
| 1693 | SCREEN *sp) |
| 1694 | { return(*(WINDOW **)0); } |
| 1695 | |
| 1696 | #undef _nc_newscr_of |
| 1697 | WINDOW *_nc_newscr_of( |
| 1698 | SCREEN *sp) |
| 1699 | { return(*(WINDOW **)0); } |
| 1700 | |
| 1701 | #undef _nc_stdscr_of |
| 1702 | WINDOW *_nc_stdscr_of( |
| 1703 | SCREEN *sp) |
| 1704 | { return(*(WINDOW **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1705 | |
| 1706 | /* ./base/lib_nl.c */ |
| 1707 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1708 | #undef nl_sp |
| 1709 | int nl_sp( |
| 1710 | SCREEN *sp) |
| 1711 | { return(*(int *)0); } |
| 1712 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1713 | #undef nl |
| 1714 | int nl(void) |
| 1715 | { return(*(int *)0); } |
| 1716 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1717 | #undef nonl_sp |
| 1718 | int nonl_sp( |
| 1719 | SCREEN *sp) |
| 1720 | { return(*(int *)0); } |
| 1721 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1722 | #undef nonl |
| 1723 | int nonl(void) |
| 1724 | { return(*(int *)0); } |
| 1725 | |
| 1726 | /* ./base/lib_overlay.c */ |
| 1727 | |
| 1728 | #undef overlay |
| 1729 | int overlay( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1730 | const WINDOW *win1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1731 | WINDOW *win2) |
| 1732 | { return(*(int *)0); } |
| 1733 | |
| 1734 | #undef overwrite |
| 1735 | int overwrite( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1736 | const WINDOW *win1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1737 | WINDOW *win2) |
| 1738 | { return(*(int *)0); } |
| 1739 | |
| 1740 | #undef copywin |
| 1741 | int copywin( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1742 | const WINDOW *src, |
| 1743 | WINDOW *dst, |
| 1744 | int sminrow, |
| 1745 | int smincol, |
| 1746 | int dminrow, |
| 1747 | int dmincol, |
| 1748 | int dmaxrow, |
| 1749 | int dmaxcol, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1750 | int over) |
| 1751 | { return(*(int *)0); } |
| 1752 | |
| 1753 | /* ./base/lib_pad.c */ |
| 1754 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1755 | #undef newpad_sp |
| 1756 | WINDOW *newpad_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1757 | SCREEN *sp, |
| 1758 | int l, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1759 | int c) |
| 1760 | { return(*(WINDOW **)0); } |
| 1761 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1762 | #undef newpad |
| 1763 | WINDOW *newpad( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1764 | int l, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1765 | int c) |
| 1766 | { return(*(WINDOW **)0); } |
| 1767 | |
| 1768 | #undef subpad |
| 1769 | WINDOW *subpad( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1770 | WINDOW *orig, |
| 1771 | int l, |
| 1772 | int c, |
| 1773 | int begy, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1774 | int begx) |
| 1775 | { return(*(WINDOW **)0); } |
| 1776 | |
| 1777 | #undef prefresh |
| 1778 | int prefresh( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1779 | WINDOW *win, |
| 1780 | int pminrow, |
| 1781 | int pmincol, |
| 1782 | int sminrow, |
| 1783 | int smincol, |
| 1784 | int smaxrow, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1785 | int smaxcol) |
| 1786 | { return(*(int *)0); } |
| 1787 | |
| 1788 | #undef pnoutrefresh |
| 1789 | int pnoutrefresh( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1790 | WINDOW *win, |
| 1791 | int pminrow, |
| 1792 | int pmincol, |
| 1793 | int sminrow, |
| 1794 | int smincol, |
| 1795 | int smaxrow, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1796 | int smaxcol) |
| 1797 | { return(*(int *)0); } |
| 1798 | |
| 1799 | #undef pechochar |
| 1800 | int pechochar( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1801 | WINDOW *pad, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1802 | const chtype ch) |
| 1803 | { return(*(int *)0); } |
| 1804 | |
| 1805 | /* ./base/lib_printw.c */ |
| 1806 | |
| 1807 | #undef printw |
| 1808 | int printw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1809 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1810 | ...) |
| 1811 | { return(*(int *)0); } |
| 1812 | |
| 1813 | #undef wprintw |
| 1814 | int wprintw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1815 | WINDOW *win, |
| 1816 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1817 | ...) |
| 1818 | { return(*(int *)0); } |
| 1819 | |
| 1820 | #undef mvprintw |
| 1821 | int mvprintw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1822 | int y, |
| 1823 | int x, |
| 1824 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1825 | ...) |
| 1826 | { return(*(int *)0); } |
| 1827 | |
| 1828 | #undef mvwprintw |
| 1829 | int mvwprintw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1830 | WINDOW *win, |
| 1831 | int y, |
| 1832 | int x, |
| 1833 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1834 | ...) |
| 1835 | { return(*(int *)0); } |
| 1836 | |
| 1837 | #undef vwprintw |
| 1838 | int vwprintw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1839 | WINDOW *win, |
| 1840 | const char *fmt, |
| 1841 | va_list argp) |
| 1842 | { return(*(int *)0); } |
| 1843 | |
| 1844 | #undef vw_printw |
| 1845 | int vw_printw( |
| 1846 | WINDOW *win, |
| 1847 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1848 | va_list argp) |
| 1849 | { return(*(int *)0); } |
| 1850 | |
| 1851 | /* ./base/lib_redrawln.c */ |
| 1852 | |
| 1853 | #undef wredrawln |
| 1854 | int wredrawln( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1855 | WINDOW *win, |
| 1856 | int beg, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1857 | int num) |
| 1858 | { return(*(int *)0); } |
| 1859 | |
| 1860 | /* ./base/lib_refresh.c */ |
| 1861 | |
| 1862 | #undef wrefresh |
| 1863 | int wrefresh( |
| 1864 | WINDOW *win) |
| 1865 | { return(*(int *)0); } |
| 1866 | |
| 1867 | #undef wnoutrefresh |
| 1868 | int wnoutrefresh( |
| 1869 | WINDOW *win) |
| 1870 | { return(*(int *)0); } |
| 1871 | |
| 1872 | /* ./base/lib_restart.c */ |
| 1873 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1874 | #undef restartterm_sp |
| 1875 | int restartterm_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1876 | SCREEN *sp, |
| 1877 | const char *termp, |
| 1878 | int filenum, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1879 | int *errret) |
| 1880 | { return(*(int *)0); } |
| 1881 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1882 | #undef restartterm |
| 1883 | int restartterm( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1884 | const char *termp, |
| 1885 | int filenum, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1886 | int *errret) |
| 1887 | { return(*(int *)0); } |
| 1888 | |
| 1889 | /* ./base/lib_scanw.c */ |
| 1890 | |
| 1891 | #undef vwscanw |
| 1892 | int vwscanw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1893 | WINDOW *win, |
| 1894 | const char *fmt, |
| 1895 | va_list argp) |
| 1896 | { return(*(int *)0); } |
| 1897 | |
| 1898 | #undef vw_scanw |
| 1899 | int vw_scanw( |
| 1900 | WINDOW *win, |
| 1901 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1902 | va_list argp) |
| 1903 | { return(*(int *)0); } |
| 1904 | |
| 1905 | #undef scanw |
| 1906 | int scanw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1907 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1908 | ...) |
| 1909 | { return(*(int *)0); } |
| 1910 | |
| 1911 | #undef wscanw |
| 1912 | int wscanw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1913 | WINDOW *win, |
| 1914 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1915 | ...) |
| 1916 | { return(*(int *)0); } |
| 1917 | |
| 1918 | #undef mvscanw |
| 1919 | int mvscanw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1920 | int y, |
| 1921 | int x, |
| 1922 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1923 | ...) |
| 1924 | { return(*(int *)0); } |
| 1925 | |
| 1926 | #undef mvwscanw |
| 1927 | int mvwscanw( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1928 | WINDOW *win, |
| 1929 | int y, |
| 1930 | int x, |
| 1931 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1932 | ...) |
| 1933 | { return(*(int *)0); } |
| 1934 | |
| 1935 | /* ./base/lib_screen.c */ |
| 1936 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1937 | #undef getwin_sp |
| 1938 | WINDOW *getwin_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1939 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1940 | FILE *filep) |
| 1941 | { return(*(WINDOW **)0); } |
| 1942 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1943 | #undef getwin |
| 1944 | WINDOW *getwin( |
| 1945 | FILE *filep) |
| 1946 | { return(*(WINDOW **)0); } |
| 1947 | |
| 1948 | #undef putwin |
| 1949 | int putwin( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1950 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1951 | FILE *filep) |
| 1952 | { return(*(int *)0); } |
| 1953 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1954 | #undef scr_restore_sp |
| 1955 | int scr_restore_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1956 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1957 | const char *file) |
| 1958 | { return(*(int *)0); } |
| 1959 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1960 | #undef scr_restore |
| 1961 | int scr_restore( |
| 1962 | const char *file) |
| 1963 | { return(*(int *)0); } |
| 1964 | |
| 1965 | #undef scr_dump |
| 1966 | int scr_dump( |
| 1967 | const char *file) |
| 1968 | { return(*(int *)0); } |
| 1969 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1970 | #undef scr_init_sp |
| 1971 | int scr_init_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1972 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1973 | const char *file) |
| 1974 | { return(*(int *)0); } |
| 1975 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1976 | #undef scr_init |
| 1977 | int scr_init( |
| 1978 | const char *file) |
| 1979 | { return(*(int *)0); } |
| 1980 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1981 | #undef scr_set_sp |
| 1982 | int scr_set_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1983 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 1984 | const char *file) |
| 1985 | { return(*(int *)0); } |
| 1986 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1987 | #undef scr_set |
| 1988 | int scr_set( |
| 1989 | const char *file) |
| 1990 | { return(*(int *)0); } |
| 1991 | |
| 1992 | /* ./base/lib_scroll.c */ |
| 1993 | |
| 1994 | #undef _nc_scroll_window |
| 1995 | void _nc_scroll_window( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 1996 | WINDOW *win, |
| 1997 | int const n, |
| 1998 | int const top, |
| 1999 | int const bottom, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2000 | chtype blank) |
| 2001 | { /* void */ } |
| 2002 | |
| 2003 | #undef wscrl |
| 2004 | int wscrl( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2005 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2006 | int n) |
| 2007 | { return(*(int *)0); } |
| 2008 | |
| 2009 | /* ./base/lib_scrollok.c */ |
| 2010 | |
| 2011 | #undef scrollok |
| 2012 | int scrollok( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2013 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2014 | NCURSES_BOOL flag) |
| 2015 | { return(*(int *)0); } |
| 2016 | |
| 2017 | /* ./base/lib_scrreg.c */ |
| 2018 | |
| 2019 | #undef wsetscrreg |
| 2020 | int wsetscrreg( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2021 | WINDOW *win, |
| 2022 | int top, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2023 | int bottom) |
| 2024 | { return(*(int *)0); } |
| 2025 | |
| 2026 | /* ./base/lib_set_term.c */ |
| 2027 | |
| 2028 | #undef set_term |
| 2029 | SCREEN *set_term( |
| 2030 | SCREEN *screenp) |
| 2031 | { return(*(SCREEN **)0); } |
| 2032 | |
| 2033 | #undef delscreen |
| 2034 | void delscreen( |
| 2035 | SCREEN *sp) |
| 2036 | { /* void */ } |
| 2037 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2038 | #undef _nc_setupscreen_sp |
| 2039 | int _nc_setupscreen_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2040 | SCREEN **spp, |
| 2041 | int slines, |
| 2042 | int scolumns, |
| 2043 | FILE *output, |
| 2044 | int filtered, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2045 | int slk_format) |
| 2046 | { return(*(int *)0); } |
| 2047 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2048 | #undef _nc_setupscreen |
| 2049 | int _nc_setupscreen( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2050 | int slines, |
| 2051 | int scolumns, |
| 2052 | FILE *output, |
| 2053 | int filtered, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2054 | int slk_format) |
| 2055 | { return(*(int *)0); } |
| 2056 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2057 | #undef _nc_ripoffline_sp |
| 2058 | int _nc_ripoffline_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2059 | SCREEN *sp, |
| 2060 | int line, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2061 | int (*init)( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2062 | WINDOW *p1, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2063 | int p2)) |
| 2064 | { return(*(int *)0); } |
| 2065 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2066 | #undef _nc_ripoffline |
| 2067 | int _nc_ripoffline( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2068 | int line, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2069 | int (*init)( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2070 | WINDOW *p1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2071 | int p2)) |
| 2072 | { return(*(int *)0); } |
| 2073 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2074 | #undef ripoffline_sp |
| 2075 | int ripoffline_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2076 | SCREEN *sp, |
| 2077 | int line, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2078 | int (*init)( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2079 | WINDOW *p1, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2080 | int p2)) |
| 2081 | { return(*(int *)0); } |
| 2082 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2083 | #undef ripoffline |
| 2084 | int ripoffline( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2085 | int line, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2086 | int (*init)( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2087 | WINDOW *p1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2088 | int p2)) |
| 2089 | { return(*(int *)0); } |
| 2090 | |
| 2091 | /* ./base/lib_slk.c */ |
| 2092 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2093 | #undef _nc_format_slks |
| 2094 | int _nc_format_slks( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2095 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2096 | int cols) |
| 2097 | { return(*(int *)0); } |
| 2098 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2099 | #undef _nc_slk_initialize |
| 2100 | int _nc_slk_initialize( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2101 | WINDOW *stwin, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2102 | int cols) |
| 2103 | { return(*(int *)0); } |
| 2104 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2105 | #undef slk_restore_sp |
| 2106 | int slk_restore_sp( |
| 2107 | SCREEN *sp) |
| 2108 | { return(*(int *)0); } |
| 2109 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2110 | #undef slk_restore |
| 2111 | int slk_restore(void) |
| 2112 | { return(*(int *)0); } |
| 2113 | |
| 2114 | /* ./base/lib_slkatr_set.c */ |
| 2115 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2116 | #undef slk_attr_set_sp |
| 2117 | int slk_attr_set_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2118 | SCREEN *sp, |
| 2119 | const attr_t attr, |
| 2120 | short pair_arg, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2121 | void *opts) |
| 2122 | { return(*(int *)0); } |
| 2123 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2124 | #undef slk_attr_set |
| 2125 | int slk_attr_set( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2126 | const attr_t attr, |
| 2127 | short pair_arg, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2128 | void *opts) |
| 2129 | { return(*(int *)0); } |
| 2130 | |
| 2131 | /* ./base/lib_slkatrof.c */ |
| 2132 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2133 | #undef slk_attroff_sp |
| 2134 | int slk_attroff_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2135 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2136 | const chtype attr) |
| 2137 | { return(*(int *)0); } |
| 2138 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2139 | #undef slk_attroff |
| 2140 | int slk_attroff( |
| 2141 | const chtype attr) |
| 2142 | { return(*(int *)0); } |
| 2143 | |
| 2144 | /* ./base/lib_slkatron.c */ |
| 2145 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2146 | #undef slk_attron_sp |
| 2147 | int slk_attron_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2148 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2149 | const chtype attr) |
| 2150 | { return(*(int *)0); } |
| 2151 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2152 | #undef slk_attron |
| 2153 | int slk_attron( |
| 2154 | const chtype attr) |
| 2155 | { return(*(int *)0); } |
| 2156 | |
| 2157 | /* ./base/lib_slkatrset.c */ |
| 2158 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2159 | #undef slk_attrset_sp |
| 2160 | int slk_attrset_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2161 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2162 | const chtype attr) |
| 2163 | { return(*(int *)0); } |
| 2164 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2165 | #undef slk_attrset |
| 2166 | int slk_attrset( |
| 2167 | const chtype attr) |
| 2168 | { return(*(int *)0); } |
| 2169 | |
| 2170 | /* ./base/lib_slkattr.c */ |
| 2171 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2172 | #undef slk_attr_sp |
| 2173 | attr_t slk_attr_sp( |
| 2174 | SCREEN *sp) |
| 2175 | { return(*(attr_t *)0); } |
| 2176 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2177 | #undef slk_attr |
| 2178 | attr_t slk_attr(void) |
| 2179 | { return(*(attr_t *)0); } |
| 2180 | |
| 2181 | /* ./base/lib_slkclear.c */ |
| 2182 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2183 | #undef slk_clear_sp |
| 2184 | int slk_clear_sp( |
| 2185 | SCREEN *sp) |
| 2186 | { return(*(int *)0); } |
| 2187 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2188 | #undef slk_clear |
| 2189 | int slk_clear(void) |
| 2190 | { return(*(int *)0); } |
| 2191 | |
| 2192 | /* ./base/lib_slkcolor.c */ |
| 2193 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2194 | #undef slk_color_sp |
| 2195 | int slk_color_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2196 | SCREEN *sp, |
| 2197 | short pair_arg) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2198 | { return(*(int *)0); } |
| 2199 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2200 | #undef slk_color |
| 2201 | int slk_color( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2202 | short pair_arg) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2203 | { return(*(int *)0); } |
| 2204 | |
| 2205 | /* ./base/lib_slkinit.c */ |
| 2206 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2207 | #undef slk_init_sp |
| 2208 | int slk_init_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2209 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2210 | int format) |
| 2211 | { return(*(int *)0); } |
| 2212 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2213 | #undef slk_init |
| 2214 | int slk_init( |
| 2215 | int format) |
| 2216 | { return(*(int *)0); } |
| 2217 | |
| 2218 | /* ./base/lib_slklab.c */ |
| 2219 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2220 | #undef slk_label_sp |
| 2221 | char *slk_label_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2222 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2223 | int n) |
| 2224 | { return(*(char **)0); } |
| 2225 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2226 | #undef slk_label |
| 2227 | char *slk_label( |
| 2228 | int n) |
| 2229 | { return(*(char **)0); } |
| 2230 | |
| 2231 | /* ./base/lib_slkrefr.c */ |
| 2232 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2233 | #undef slk_noutrefresh_sp |
| 2234 | int slk_noutrefresh_sp( |
| 2235 | SCREEN *sp) |
| 2236 | { return(*(int *)0); } |
| 2237 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2238 | #undef slk_noutrefresh |
| 2239 | int slk_noutrefresh(void) |
| 2240 | { return(*(int *)0); } |
| 2241 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2242 | #undef slk_refresh_sp |
| 2243 | int slk_refresh_sp( |
| 2244 | SCREEN *sp) |
| 2245 | { return(*(int *)0); } |
| 2246 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2247 | #undef slk_refresh |
| 2248 | int slk_refresh(void) |
| 2249 | { return(*(int *)0); } |
| 2250 | |
| 2251 | /* ./base/lib_slkset.c */ |
| 2252 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2253 | #undef slk_set_sp |
| 2254 | int slk_set_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2255 | SCREEN *sp, |
| 2256 | int i, |
| 2257 | const char *astr, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2258 | int format) |
| 2259 | { return(*(int *)0); } |
| 2260 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2261 | #undef slk_set |
| 2262 | int slk_set( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2263 | int i, |
| 2264 | const char *astr, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2265 | int format) |
| 2266 | { return(*(int *)0); } |
| 2267 | |
| 2268 | /* ./base/lib_slktouch.c */ |
| 2269 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2270 | #undef slk_touch_sp |
| 2271 | int slk_touch_sp( |
| 2272 | SCREEN *sp) |
| 2273 | { return(*(int *)0); } |
| 2274 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2275 | #undef slk_touch |
| 2276 | int slk_touch(void) |
| 2277 | { return(*(int *)0); } |
| 2278 | |
| 2279 | /* ./base/lib_touch.c */ |
| 2280 | |
| 2281 | #undef is_linetouched |
| 2282 | NCURSES_BOOL is_linetouched( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2283 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2284 | int line) |
| 2285 | { return(*(NCURSES_BOOL *)0); } |
| 2286 | |
| 2287 | #undef is_wintouched |
| 2288 | NCURSES_BOOL is_wintouched( |
| 2289 | WINDOW *win) |
| 2290 | { return(*(NCURSES_BOOL *)0); } |
| 2291 | |
| 2292 | #undef wtouchln |
| 2293 | int wtouchln( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2294 | WINDOW *win, |
| 2295 | int y, |
| 2296 | int n, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2297 | int changed) |
| 2298 | { return(*(int *)0); } |
| 2299 | |
| 2300 | /* ./trace/lib_tracedmp.c */ |
| 2301 | |
| 2302 | #undef _tracedump |
| 2303 | void _tracedump( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2304 | const char *name, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2305 | WINDOW *win) |
| 2306 | { /* void */ } |
| 2307 | |
| 2308 | /* ./trace/lib_tracemse.c */ |
| 2309 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2310 | #undef _nc_trace_mmask_t |
| 2311 | char *_nc_trace_mmask_t( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2312 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2313 | mmask_t code) |
| 2314 | { return(*(char **)0); } |
| 2315 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2316 | #undef _nc_tracemouse |
| 2317 | char *_nc_tracemouse( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2318 | SCREEN *sp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2319 | MEVENT const *ep) |
| 2320 | { return(*(char **)0); } |
| 2321 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2322 | #undef _nc_retrace_mmask_t |
| 2323 | mmask_t _nc_retrace_mmask_t( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2324 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2325 | mmask_t code) |
| 2326 | { return(*(mmask_t *)0); } |
| 2327 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2328 | #undef _tracemouse |
| 2329 | char *_tracemouse( |
| 2330 | MEVENT const *ep) |
| 2331 | { return(*(char **)0); } |
| 2332 | |
| 2333 | /* ./tty/lib_tstp.c */ |
| 2334 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2335 | #undef _nc_signal_handler |
| 2336 | void _nc_signal_handler( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2337 | int enable) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2338 | { /* void */ } |
| 2339 | |
| 2340 | /* ./base/lib_ungetch.c */ |
| 2341 | |
| 2342 | #undef _nc_fifo_dump |
| 2343 | void _nc_fifo_dump( |
| 2344 | SCREEN *sp) |
| 2345 | { /* void */ } |
| 2346 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2347 | #undef ungetch_sp |
| 2348 | int ungetch_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2349 | SCREEN *sp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2350 | int ch) |
| 2351 | { return(*(int *)0); } |
| 2352 | |
| 2353 | #undef ungetch |
| 2354 | int ungetch( |
| 2355 | int ch) |
| 2356 | { return(*(int *)0); } |
| 2357 | |
| 2358 | /* ./tty/lib_vidattr.c */ |
| 2359 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2360 | #undef vidputs_sp |
| 2361 | int vidputs_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2362 | SCREEN *sp, |
| 2363 | chtype newmode, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2364 | NCURSES_OUTC_sp outc) |
| 2365 | { return(*(int *)0); } |
| 2366 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2367 | #undef vidputs |
| 2368 | int vidputs( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2369 | chtype newmode, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2370 | NCURSES_OUTC outc) |
| 2371 | { return(*(int *)0); } |
| 2372 | |
| 2373 | #undef vidattr_sp |
| 2374 | int vidattr_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2375 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2376 | chtype newmode) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2377 | { return(*(int *)0); } |
| 2378 | |
| 2379 | #undef vidattr |
| 2380 | int vidattr( |
| 2381 | chtype newmode) |
| 2382 | { return(*(int *)0); } |
| 2383 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2384 | #undef termattrs_sp |
| 2385 | chtype termattrs_sp( |
| 2386 | SCREEN *sp) |
| 2387 | { return(*(chtype *)0); } |
| 2388 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2389 | #undef termattrs |
| 2390 | chtype termattrs(void) |
| 2391 | { return(*(chtype *)0); } |
| 2392 | |
| 2393 | /* ./base/lib_vline.c */ |
| 2394 | |
| 2395 | #undef wvline |
| 2396 | int wvline( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2397 | WINDOW *win, |
| 2398 | chtype ch, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2399 | int n) |
| 2400 | { return(*(int *)0); } |
| 2401 | |
| 2402 | /* ./base/lib_wattroff.c */ |
| 2403 | |
| 2404 | #undef wattr_off |
| 2405 | int wattr_off( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2406 | WINDOW *win, |
| 2407 | attr_t at, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2408 | void *opts) |
| 2409 | { return(*(int *)0); } |
| 2410 | |
| 2411 | /* ./base/lib_wattron.c */ |
| 2412 | |
| 2413 | #undef wattr_on |
| 2414 | int wattr_on( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2415 | WINDOW *win, |
| 2416 | attr_t at, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2417 | void *opts) |
| 2418 | { return(*(int *)0); } |
| 2419 | |
| 2420 | /* ./base/lib_winch.c */ |
| 2421 | |
| 2422 | #undef winch |
| 2423 | chtype winch( |
| 2424 | WINDOW *win) |
| 2425 | { return(*(chtype *)0); } |
| 2426 | |
| 2427 | /* ./base/lib_window.c */ |
| 2428 | |
| 2429 | #undef _nc_synchook |
| 2430 | void _nc_synchook( |
| 2431 | WINDOW *win) |
| 2432 | { /* void */ } |
| 2433 | |
| 2434 | #undef mvderwin |
| 2435 | int mvderwin( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2436 | WINDOW *win, |
| 2437 | int y, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2438 | int x) |
| 2439 | { return(*(int *)0); } |
| 2440 | |
| 2441 | #undef syncok |
| 2442 | int syncok( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2443 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2444 | NCURSES_BOOL bf) |
| 2445 | { return(*(int *)0); } |
| 2446 | |
| 2447 | #undef wsyncup |
| 2448 | void wsyncup( |
| 2449 | WINDOW *win) |
| 2450 | { /* void */ } |
| 2451 | |
| 2452 | #undef wsyncdown |
| 2453 | void wsyncdown( |
| 2454 | WINDOW *win) |
| 2455 | { /* void */ } |
| 2456 | |
| 2457 | #undef wcursyncup |
| 2458 | void wcursyncup( |
| 2459 | WINDOW *win) |
| 2460 | { /* void */ } |
| 2461 | |
| 2462 | #undef dupwin |
| 2463 | WINDOW *dupwin( |
| 2464 | WINDOW *win) |
| 2465 | { return(*(WINDOW **)0); } |
| 2466 | |
| 2467 | /* ./base/nc_panel.c */ |
| 2468 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2469 | #undef _nc_panelhook_sp |
| 2470 | struct panelhook *_nc_panelhook_sp( |
| 2471 | SCREEN *sp) |
| 2472 | { return(*(struct panelhook **)0); } |
| 2473 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2474 | #undef _nc_panelhook |
| 2475 | struct panelhook *_nc_panelhook(void) |
| 2476 | { return(*(struct panelhook **)0); } |
| 2477 | |
| 2478 | /* ./base/safe_sprintf.c */ |
| 2479 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2480 | #undef _nc_printf_string_sp |
| 2481 | char *_nc_printf_string_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2482 | SCREEN *sp, |
| 2483 | const char *fmt, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2484 | va_list ap) |
| 2485 | { return(*(char **)0); } |
| 2486 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2487 | #undef _nc_printf_string |
| 2488 | char *_nc_printf_string( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2489 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2490 | va_list ap) |
| 2491 | { return(*(char **)0); } |
| 2492 | |
| 2493 | /* ./tty/tty_update.c */ |
| 2494 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2495 | #undef doupdate_sp |
| 2496 | int doupdate_sp( |
| 2497 | SCREEN *sp) |
| 2498 | { return(*(int *)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2499 | |
| 2500 | #undef doupdate |
| 2501 | int doupdate(void) |
| 2502 | { return(*(int *)0); } |
| 2503 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2504 | #undef _nc_scrolln_sp |
| 2505 | int _nc_scrolln_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2506 | SCREEN *sp, |
| 2507 | int n, |
| 2508 | int top, |
| 2509 | int bot, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2510 | int maxy) |
| 2511 | { return(*(int *)0); } |
| 2512 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2513 | #undef _nc_scrolln |
| 2514 | int _nc_scrolln( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2515 | int n, |
| 2516 | int top, |
| 2517 | int bot, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2518 | int maxy) |
| 2519 | { return(*(int *)0); } |
| 2520 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2521 | #undef _nc_screen_resume_sp |
| 2522 | void _nc_screen_resume_sp( |
| 2523 | SCREEN *sp) |
| 2524 | { /* void */ } |
| 2525 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2526 | #undef _nc_screen_resume |
| 2527 | void _nc_screen_resume(void) |
| 2528 | { /* void */ } |
| 2529 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2530 | #undef _nc_screen_init_sp |
| 2531 | void _nc_screen_init_sp( |
| 2532 | SCREEN *sp) |
| 2533 | { /* void */ } |
| 2534 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2535 | #undef _nc_screen_init |
| 2536 | void _nc_screen_init(void) |
| 2537 | { /* void */ } |
| 2538 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2539 | #undef _nc_screen_wrap_sp |
| 2540 | void _nc_screen_wrap_sp( |
| 2541 | SCREEN *sp) |
| 2542 | { /* void */ } |
| 2543 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2544 | #undef _nc_screen_wrap |
| 2545 | void _nc_screen_wrap(void) |
| 2546 | { /* void */ } |
| 2547 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2548 | #undef _nc_do_xmc_glitch_sp |
| 2549 | void _nc_do_xmc_glitch_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2550 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2551 | attr_t previous) |
| 2552 | { /* void */ } |
| 2553 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2554 | #undef _nc_do_xmc_glitch |
| 2555 | void _nc_do_xmc_glitch( |
| 2556 | attr_t previous) |
| 2557 | { /* void */ } |
| 2558 | |
| 2559 | /* ./trace/varargs.c */ |
| 2560 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2561 | #undef _nc_varargs |
| 2562 | char *_nc_varargs( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2563 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2564 | va_list ap) |
| 2565 | { return(*(char **)0); } |
| 2566 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2567 | /* ./base/vsscanf.c */ |
| 2568 | |
| 2569 | #undef _nc_vsscanf |
| 2570 | void _nc_vsscanf(void) |
| 2571 | { /* void */ } |
| 2572 | |
| 2573 | /* ./base/lib_freeall.c */ |
| 2574 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2575 | #undef _nc_freeall |
| 2576 | void _nc_freeall(void) |
| 2577 | { /* void */ } |
| 2578 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2579 | #undef _nc_free_and_exit_sp |
| 2580 | void _nc_free_and_exit_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2581 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2582 | int code) |
| 2583 | { /* void */ } |
| 2584 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2585 | #undef _nc_free_and_exit |
| 2586 | void _nc_free_and_exit( |
| 2587 | int code) |
| 2588 | { /* void */ } |
| 2589 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2590 | #undef exit_curses |
| 2591 | void exit_curses( |
| 2592 | int code) |
| 2593 | { /* void */ } |
| 2594 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2595 | /* ./expanded.c */ |
| 2596 | |
| 2597 | #undef _nc_toggle_attr_on |
| 2598 | void _nc_toggle_attr_on( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2599 | attr_t *S, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2600 | attr_t at) |
| 2601 | { /* void */ } |
| 2602 | |
| 2603 | #undef _nc_toggle_attr_off |
| 2604 | void _nc_toggle_attr_off( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2605 | attr_t *S, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2606 | attr_t at) |
| 2607 | { /* void */ } |
| 2608 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2609 | #undef _nc_DelCharCost_sp |
| 2610 | int _nc_DelCharCost_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2611 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2612 | int count) |
| 2613 | { return(*(int *)0); } |
| 2614 | |
| 2615 | #undef _nc_InsCharCost_sp |
| 2616 | int _nc_InsCharCost_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2617 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2618 | int count) |
| 2619 | { return(*(int *)0); } |
| 2620 | |
| 2621 | #undef _nc_UpdateAttrs_sp |
| 2622 | void _nc_UpdateAttrs_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2623 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2624 | chtype c) |
| 2625 | { /* void */ } |
| 2626 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2627 | #undef _nc_DelCharCost |
| 2628 | int _nc_DelCharCost( |
| 2629 | int count) |
| 2630 | { return(*(int *)0); } |
| 2631 | |
| 2632 | #undef _nc_InsCharCost |
| 2633 | int _nc_InsCharCost( |
| 2634 | int count) |
| 2635 | { return(*(int *)0); } |
| 2636 | |
| 2637 | #undef _nc_UpdateAttrs |
| 2638 | void _nc_UpdateAttrs( |
| 2639 | chtype c) |
| 2640 | { /* void */ } |
| 2641 | |
| 2642 | /* ./base/legacy_coding.c */ |
| 2643 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2644 | #undef use_legacy_coding_sp |
| 2645 | int use_legacy_coding_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2646 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2647 | int level) |
| 2648 | { return(*(int *)0); } |
| 2649 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2650 | #undef use_legacy_coding |
| 2651 | int use_legacy_coding( |
| 2652 | int level) |
| 2653 | { return(*(int *)0); } |
| 2654 | |
| 2655 | /* ./base/lib_dft_fgbg.c */ |
| 2656 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2657 | #undef use_default_colors_sp |
| 2658 | int use_default_colors_sp( |
| 2659 | SCREEN *sp) |
| 2660 | { return(*(int *)0); } |
| 2661 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2662 | #undef use_default_colors |
| 2663 | int use_default_colors(void) |
| 2664 | { return(*(int *)0); } |
| 2665 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2666 | #undef assume_default_colors_sp |
| 2667 | int assume_default_colors_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2668 | SCREEN *sp, |
| 2669 | int fg, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2670 | int bg) |
| 2671 | { return(*(int *)0); } |
| 2672 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2673 | #undef assume_default_colors |
| 2674 | int assume_default_colors( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2675 | int fg, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2676 | int bg) |
| 2677 | { return(*(int *)0); } |
| 2678 | |
| 2679 | /* ./tinfo/lib_print.c */ |
| 2680 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2681 | #undef mcprint_sp |
| 2682 | int mcprint_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2683 | SCREEN *sp, |
| 2684 | char *data, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2685 | int len) |
| 2686 | { return(*(int *)0); } |
| 2687 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2688 | #undef mcprint |
| 2689 | int mcprint( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2690 | char *data, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2691 | int len) |
| 2692 | { return(*(int *)0); } |
| 2693 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2694 | /* ./base/new_pair.c */ |
| 2695 | |
| 2696 | #undef _nc_new_pair |
| 2697 | void _nc_new_pair(void) |
| 2698 | { /* void */ } |
| 2699 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2700 | /* ./base/resizeterm.c */ |
| 2701 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2702 | #undef is_term_resized_sp |
| 2703 | NCURSES_BOOL is_term_resized_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2704 | SCREEN *sp, |
| 2705 | int ToLines, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2706 | int ToCols) |
| 2707 | { return(*(NCURSES_BOOL *)0); } |
| 2708 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2709 | #undef is_term_resized |
| 2710 | NCURSES_BOOL is_term_resized( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2711 | int ToLines, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2712 | int ToCols) |
| 2713 | { return(*(NCURSES_BOOL *)0); } |
| 2714 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2715 | #undef resize_term_sp |
| 2716 | int resize_term_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2717 | SCREEN *sp, |
| 2718 | int ToLines, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2719 | int ToCols) |
| 2720 | { return(*(int *)0); } |
| 2721 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2722 | #undef resize_term |
| 2723 | int resize_term( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2724 | int ToLines, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2725 | int ToCols) |
| 2726 | { return(*(int *)0); } |
| 2727 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2728 | #undef resizeterm_sp |
| 2729 | int resizeterm_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2730 | SCREEN *sp, |
| 2731 | int ToLines, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2732 | int ToCols) |
| 2733 | { return(*(int *)0); } |
| 2734 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2735 | #undef resizeterm |
| 2736 | int resizeterm( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2737 | int ToLines, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2738 | int ToCols) |
| 2739 | { return(*(int *)0); } |
| 2740 | |
| 2741 | /* ./trace/trace_xnames.c */ |
| 2742 | |
| 2743 | #undef _nc_trace_xnames |
| 2744 | void _nc_trace_xnames( |
| 2745 | TERMTYPE *tp) |
| 2746 | { /* void */ } |
| 2747 | |
| 2748 | /* ./tinfo/use_screen.c */ |
| 2749 | |
| 2750 | #undef use_screen |
| 2751 | int use_screen( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2752 | SCREEN *screen, |
| 2753 | NCURSES_SCREEN_CB func, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2754 | void *data) |
| 2755 | { return(*(int *)0); } |
| 2756 | |
| 2757 | /* ./base/use_window.c */ |
| 2758 | |
| 2759 | #undef use_window |
| 2760 | int use_window( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2761 | WINDOW *win, |
| 2762 | NCURSES_WINDOW_CB func, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2763 | void *data) |
| 2764 | { return(*(int *)0); } |
| 2765 | |
| 2766 | /* ./base/wresize.c */ |
| 2767 | |
| 2768 | #undef wresize |
| 2769 | int wresize( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2770 | WINDOW *win, |
| 2771 | int ToLines, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2772 | int ToCols) |
| 2773 | { return(*(int *)0); } |
| 2774 | |
| 2775 | /* ./tinfo/access.c */ |
| 2776 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2777 | #undef _nc_rootname |
| 2778 | char *_nc_rootname( |
| 2779 | char *path) |
| 2780 | { return(*(char **)0); } |
| 2781 | |
| 2782 | #undef _nc_is_abs_path |
| 2783 | NCURSES_BOOL _nc_is_abs_path( |
| 2784 | const char *path) |
| 2785 | { return(*(NCURSES_BOOL *)0); } |
| 2786 | |
| 2787 | #undef _nc_pathlast |
| 2788 | unsigned _nc_pathlast( |
| 2789 | const char *path) |
| 2790 | { return(*(unsigned *)0); } |
| 2791 | |
| 2792 | #undef _nc_basename |
| 2793 | char *_nc_basename( |
| 2794 | char *path) |
| 2795 | { return(*(char **)0); } |
| 2796 | |
| 2797 | #undef _nc_access |
| 2798 | int _nc_access( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2799 | const char *path, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2800 | int mode) |
| 2801 | { return(*(int *)0); } |
| 2802 | |
| 2803 | #undef _nc_is_dir_path |
| 2804 | NCURSES_BOOL _nc_is_dir_path( |
| 2805 | const char *path) |
| 2806 | { return(*(NCURSES_BOOL *)0); } |
| 2807 | |
| 2808 | #undef _nc_is_file_path |
| 2809 | NCURSES_BOOL _nc_is_file_path( |
| 2810 | const char *path) |
| 2811 | { return(*(NCURSES_BOOL *)0); } |
| 2812 | |
| 2813 | #undef _nc_env_access |
| 2814 | int _nc_env_access(void) |
| 2815 | { return(*(int *)0); } |
| 2816 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2817 | #undef _nc_safe_fopen |
| 2818 | FILE *_nc_safe_fopen( |
| 2819 | const char *path, |
| 2820 | const char *mode) |
| 2821 | { return(*(FILE **)0); } |
| 2822 | |
| 2823 | #undef _nc_safe_open3 |
| 2824 | int _nc_safe_open3( |
| 2825 | const char *path, |
| 2826 | int flags, |
| 2827 | mode_t mode) |
| 2828 | { return(*(int *)0); } |
| 2829 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2830 | /* ./tinfo/add_tries.c */ |
| 2831 | |
| 2832 | #undef _nc_add_to_try |
| 2833 | int _nc_add_to_try( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2834 | TRIES **tree, |
| 2835 | const char *str, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2836 | unsigned code) |
| 2837 | { return(*(int *)0); } |
| 2838 | |
| 2839 | /* ./tinfo/alloc_ttype.c */ |
| 2840 | |
| 2841 | #undef _nc_align_termtype |
| 2842 | void _nc_align_termtype( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2843 | TERMTYPE *to, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2844 | TERMTYPE *from) |
| 2845 | { /* void */ } |
| 2846 | |
| 2847 | #undef _nc_copy_termtype |
| 2848 | void _nc_copy_termtype( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2849 | TERMTYPE *dst, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2850 | const TERMTYPE *src) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2851 | { /* void */ } |
| 2852 | |
| 2853 | /* ./codes.c */ |
| 2854 | |
| 2855 | #undef _nc_boolcodes |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2856 | const char *const *_nc_boolcodes(void) |
| 2857 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2858 | |
| 2859 | #undef _nc_numcodes |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2860 | const char *const *_nc_numcodes(void) |
| 2861 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2862 | |
| 2863 | #undef _nc_strcodes |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2864 | const char *const *_nc_strcodes(void) |
| 2865 | { return(*(const char **)0); } |
| 2866 | |
| 2867 | /* ./comp_captab.c */ |
| 2868 | |
| 2869 | #undef _nc_get_table |
| 2870 | const struct name_table_entry *_nc_get_table( |
| 2871 | NCURSES_BOOL termcap) |
| 2872 | { return(*(const struct name_table_entry **)0); } |
| 2873 | |
| 2874 | #undef _nc_get_hash_table |
| 2875 | const HashValue *_nc_get_hash_table( |
| 2876 | NCURSES_BOOL termcap) |
| 2877 | { return(*(const HashValue **)0); } |
| 2878 | |
| 2879 | #undef _nc_get_alias_table |
| 2880 | const struct alias *_nc_get_alias_table( |
| 2881 | NCURSES_BOOL termcap) |
| 2882 | { return(*(const struct alias **)0); } |
| 2883 | |
| 2884 | #undef _nc_get_hash_info |
| 2885 | const HashData *_nc_get_hash_info( |
| 2886 | NCURSES_BOOL termcap) |
| 2887 | { return(*(const HashData **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2888 | |
| 2889 | /* ./tinfo/comp_error.c */ |
| 2890 | |
| 2891 | #undef _nc_suppress_warnings |
| 2892 | NCURSES_BOOL _nc_suppress_warnings; |
| 2893 | #undef _nc_curr_line |
| 2894 | int _nc_curr_line; |
| 2895 | #undef _nc_curr_col |
| 2896 | int _nc_curr_col; |
| 2897 | |
| 2898 | #undef _nc_get_source |
| 2899 | const char *_nc_get_source(void) |
| 2900 | { return(*(const char **)0); } |
| 2901 | |
| 2902 | #undef _nc_set_source |
| 2903 | void _nc_set_source( |
| 2904 | const char *const name) |
| 2905 | { /* void */ } |
| 2906 | |
| 2907 | #undef _nc_set_type |
| 2908 | void _nc_set_type( |
| 2909 | const char *const name) |
| 2910 | { /* void */ } |
| 2911 | |
| 2912 | #undef _nc_get_type |
| 2913 | void _nc_get_type( |
| 2914 | char *name) |
| 2915 | { /* void */ } |
| 2916 | |
| 2917 | #undef _nc_warning |
| 2918 | void _nc_warning( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2919 | const char *const fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2920 | ...) |
| 2921 | { /* void */ } |
| 2922 | |
| 2923 | #undef _nc_err_abort |
| 2924 | void _nc_err_abort( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2925 | const char *const fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2926 | ...) |
| 2927 | { /* void */ } |
| 2928 | |
| 2929 | #undef _nc_syserr_abort |
| 2930 | void _nc_syserr_abort( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2931 | const char *const fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2932 | ...) |
| 2933 | { /* void */ } |
| 2934 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2935 | /* ./tinfo/comp_hash.c */ |
| 2936 | |
| 2937 | #undef _nc_find_entry |
| 2938 | struct name_table_entry const *_nc_find_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2939 | const char *string, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2940 | const HashValue *hash_table) |
| 2941 | { return(*(struct name_table_entry const **)0); } |
| 2942 | |
| 2943 | #undef _nc_find_type_entry |
| 2944 | struct name_table_entry const *_nc_find_type_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2945 | const char *string, |
| 2946 | int type, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2947 | NCURSES_BOOL termcap) |
| 2948 | { return(*(struct name_table_entry const **)0); } |
| 2949 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2950 | #undef _nc_find_user_entry |
| 2951 | struct user_table_entry const *_nc_find_user_entry( |
| 2952 | const char *string) |
| 2953 | { return(*(struct user_table_entry const **)0); } |
| 2954 | |
| 2955 | /* ./comp_userdefs.c */ |
| 2956 | |
| 2957 | #undef _nc_get_userdefs_table |
| 2958 | const struct user_table_entry *_nc_get_userdefs_table(void) |
| 2959 | { return(*(const struct user_table_entry **)0); } |
| 2960 | |
| 2961 | #undef _nc_get_hash_user |
| 2962 | const HashData *_nc_get_hash_user(void) |
| 2963 | { return(*(const HashData **)0); } |
| 2964 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2965 | /* ./tinfo/db_iterator.c */ |
| 2966 | |
| 2967 | #undef _nc_tic_dir |
| 2968 | const char *_nc_tic_dir( |
| 2969 | const char *path) |
| 2970 | { return(*(const char **)0); } |
| 2971 | |
| 2972 | #undef _nc_keep_tic_dir |
| 2973 | void _nc_keep_tic_dir( |
| 2974 | const char *path) |
| 2975 | { /* void */ } |
| 2976 | |
| 2977 | #undef _nc_last_db |
| 2978 | void _nc_last_db(void) |
| 2979 | { /* void */ } |
| 2980 | |
| 2981 | #undef _nc_next_db |
| 2982 | const char *_nc_next_db( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2983 | DBDIRS *state, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2984 | int *offset) |
| 2985 | { return(*(const char **)0); } |
| 2986 | |
| 2987 | #undef _nc_first_db |
| 2988 | void _nc_first_db( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2989 | DBDIRS *state, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2990 | int *offset) |
| 2991 | { /* void */ } |
| 2992 | |
| 2993 | /* ./tinfo/doalloc.c */ |
| 2994 | |
| 2995 | #undef _nc_doalloc |
| 2996 | void *_nc_doalloc( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 2997 | void *oldp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 2998 | size_t amount) |
| 2999 | { return(*(void **)0); } |
| 3000 | |
| 3001 | /* ./tinfo/entries.c */ |
| 3002 | |
| 3003 | #undef _nc_head |
| 3004 | ENTRY *_nc_head; |
| 3005 | #undef _nc_tail |
| 3006 | ENTRY *_nc_tail; |
| 3007 | |
| 3008 | #undef _nc_free_entry |
| 3009 | void _nc_free_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3010 | ENTRY *headp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3011 | TERMTYPE *tterm) |
| 3012 | { /* void */ } |
| 3013 | |
| 3014 | #undef _nc_free_entries |
| 3015 | void _nc_free_entries( |
| 3016 | ENTRY *headp) |
| 3017 | { /* void */ } |
| 3018 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3019 | #undef _nc_leaks_tinfo |
| 3020 | void _nc_leaks_tinfo(void) |
| 3021 | { /* void */ } |
| 3022 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3023 | #undef exit_terminfo |
| 3024 | void exit_terminfo( |
| 3025 | int code) |
| 3026 | { /* void */ } |
| 3027 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3028 | /* ./fallback.c */ |
| 3029 | |
| 3030 | #undef _nc_fallback |
| 3031 | const TERMTYPE *_nc_fallback( |
| 3032 | const char *name) |
| 3033 | { return(*(const TERMTYPE **)0); } |
| 3034 | |
| 3035 | /* ./tinfo/free_ttype.c */ |
| 3036 | |
| 3037 | #undef _nc_free_termtype |
| 3038 | void _nc_free_termtype( |
| 3039 | TERMTYPE *ptr) |
| 3040 | { /* void */ } |
| 3041 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3042 | #undef _nc_free_termtype1 |
| 3043 | void _nc_free_termtype1( |
| 3044 | TERMTYPE *ptr) |
| 3045 | { /* void */ } |
| 3046 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3047 | #undef _nc_user_definable |
| 3048 | NCURSES_BOOL _nc_user_definable; |
| 3049 | |
| 3050 | #undef use_extended_names |
| 3051 | int use_extended_names( |
| 3052 | NCURSES_BOOL flag) |
| 3053 | { return(*(int *)0); } |
| 3054 | |
| 3055 | /* ./tinfo/getenv_num.c */ |
| 3056 | |
| 3057 | #undef _nc_getenv_num |
| 3058 | int _nc_getenv_num( |
| 3059 | const char *name) |
| 3060 | { return(*(int *)0); } |
| 3061 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3062 | #undef _nc_setenv_num |
| 3063 | void _nc_setenv_num( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3064 | const char *name, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3065 | int value) |
| 3066 | { /* void */ } |
| 3067 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3068 | /* ./tinfo/home_terminfo.c */ |
| 3069 | |
| 3070 | #undef _nc_home_terminfo |
| 3071 | char *_nc_home_terminfo(void) |
| 3072 | { return(*(char **)0); } |
| 3073 | |
| 3074 | /* ./tinfo/init_keytry.c */ |
| 3075 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3076 | #undef _nc_init_keytry |
| 3077 | void _nc_init_keytry( |
| 3078 | SCREEN *sp) |
| 3079 | { /* void */ } |
| 3080 | |
| 3081 | /* ./tinfo/lib_acs.c */ |
| 3082 | |
| 3083 | #undef _nc_acs_map |
| 3084 | chtype *_nc_acs_map(void) |
| 3085 | { return(*(chtype **)0); } |
| 3086 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3087 | #undef _nc_init_acs_sp |
| 3088 | void _nc_init_acs_sp( |
| 3089 | SCREEN *sp) |
| 3090 | { /* void */ } |
| 3091 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3092 | #undef _nc_init_acs |
| 3093 | void _nc_init_acs(void) |
| 3094 | { /* void */ } |
| 3095 | |
| 3096 | /* ./tinfo/lib_baudrate.c */ |
| 3097 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3098 | struct speed { |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3099 | int given_speed; |
| 3100 | int actual_speed; |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3101 | }; |
| 3102 | |
| 3103 | #undef _nc_baudrate |
| 3104 | int _nc_baudrate( |
| 3105 | int OSpeed) |
| 3106 | { return(*(int *)0); } |
| 3107 | |
| 3108 | #undef _nc_ospeed |
| 3109 | int _nc_ospeed( |
| 3110 | int BaudRate) |
| 3111 | { return(*(int *)0); } |
| 3112 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3113 | #undef baudrate_sp |
| 3114 | int baudrate_sp( |
| 3115 | SCREEN *sp) |
| 3116 | { return(*(int *)0); } |
| 3117 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3118 | #undef baudrate |
| 3119 | int baudrate(void) |
| 3120 | { return(*(int *)0); } |
| 3121 | |
| 3122 | /* ./tinfo/lib_cur_term.c */ |
| 3123 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3124 | #undef _nc_get_cur_term_sp |
| 3125 | TERMINAL *_nc_get_cur_term_sp( |
| 3126 | SCREEN *sp) |
| 3127 | { return(*(TERMINAL **)0); } |
| 3128 | |
| 3129 | #undef _nc_get_cur_term |
| 3130 | TERMINAL *_nc_get_cur_term(void) |
| 3131 | { return(*(TERMINAL **)0); } |
| 3132 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3133 | #undef _nc_cur_term |
| 3134 | TERMINAL *_nc_cur_term(void) |
| 3135 | { return(*(TERMINAL **)0); } |
| 3136 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3137 | #undef set_curterm_sp |
| 3138 | TERMINAL *set_curterm_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3139 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3140 | TERMINAL *termp) |
| 3141 | { return(*(TERMINAL **)0); } |
| 3142 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3143 | #undef set_curterm |
| 3144 | TERMINAL *set_curterm( |
| 3145 | TERMINAL *termp) |
| 3146 | { return(*(TERMINAL **)0); } |
| 3147 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3148 | #undef del_curterm_sp |
| 3149 | int del_curterm_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3150 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3151 | TERMINAL *termp) |
| 3152 | { return(*(int *)0); } |
| 3153 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3154 | #undef del_curterm |
| 3155 | int del_curterm( |
| 3156 | TERMINAL *termp) |
| 3157 | { return(*(int *)0); } |
| 3158 | |
| 3159 | /* ./tinfo/lib_data.c */ |
| 3160 | |
| 3161 | #undef _nc_stdscr |
| 3162 | WINDOW *_nc_stdscr(void) |
| 3163 | { return(*(WINDOW **)0); } |
| 3164 | |
| 3165 | #undef _nc_curscr |
| 3166 | WINDOW *_nc_curscr(void) |
| 3167 | { return(*(WINDOW **)0); } |
| 3168 | |
| 3169 | #undef _nc_newscr |
| 3170 | WINDOW *_nc_newscr(void) |
| 3171 | { return(*(WINDOW **)0); } |
| 3172 | |
| 3173 | #undef _nc_screen_chain |
| 3174 | SCREEN *_nc_screen_chain; |
| 3175 | #undef SP |
| 3176 | SCREEN *SP; |
| 3177 | #undef _nc_globals |
| 3178 | NCURSES_GLOBALS _nc_globals; |
| 3179 | #undef _nc_prescreen |
| 3180 | NCURSES_PRESCREEN _nc_prescreen; |
| 3181 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3182 | #undef _nc_screen_of |
| 3183 | SCREEN *_nc_screen_of( |
| 3184 | WINDOW *win) |
| 3185 | { return(*(SCREEN **)0); } |
| 3186 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3187 | #undef _nc_init_pthreads |
| 3188 | void _nc_init_pthreads(void) |
| 3189 | { /* void */ } |
| 3190 | |
| 3191 | #undef _nc_mutex_init |
| 3192 | void _nc_mutex_init( |
| 3193 | pthread_mutex_t *obj) |
| 3194 | { /* void */ } |
| 3195 | |
| 3196 | #undef _nc_mutex_lock |
| 3197 | int _nc_mutex_lock( |
| 3198 | pthread_mutex_t *obj) |
| 3199 | { return(*(int *)0); } |
| 3200 | |
| 3201 | #undef _nc_mutex_trylock |
| 3202 | int _nc_mutex_trylock( |
| 3203 | pthread_mutex_t *obj) |
| 3204 | { return(*(int *)0); } |
| 3205 | |
| 3206 | #undef _nc_mutex_unlock |
| 3207 | int _nc_mutex_unlock( |
| 3208 | pthread_mutex_t *obj) |
| 3209 | { return(*(int *)0); } |
| 3210 | |
| 3211 | /* ./tinfo/lib_has_cap.c */ |
| 3212 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3213 | #undef has_ic_sp |
| 3214 | NCURSES_BOOL has_ic_sp( |
| 3215 | SCREEN *sp) |
| 3216 | { return(*(NCURSES_BOOL *)0); } |
| 3217 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3218 | #undef has_ic |
| 3219 | NCURSES_BOOL has_ic(void) |
| 3220 | { return(*(NCURSES_BOOL *)0); } |
| 3221 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3222 | #undef has_il_sp |
| 3223 | NCURSES_BOOL has_il_sp( |
| 3224 | SCREEN *sp) |
| 3225 | { return(*(NCURSES_BOOL *)0); } |
| 3226 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3227 | #undef has_il |
| 3228 | NCURSES_BOOL has_il(void) |
| 3229 | { return(*(NCURSES_BOOL *)0); } |
| 3230 | |
| 3231 | /* ./tinfo/lib_kernel.c */ |
| 3232 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3233 | #undef erasechar_sp |
| 3234 | char erasechar_sp( |
| 3235 | SCREEN *sp) |
| 3236 | { return(*(char *)0); } |
| 3237 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3238 | #undef erasechar |
| 3239 | char erasechar(void) |
| 3240 | { return(*(char *)0); } |
| 3241 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3242 | #undef killchar_sp |
| 3243 | char killchar_sp( |
| 3244 | SCREEN *sp) |
| 3245 | { return(*(char *)0); } |
| 3246 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3247 | #undef killchar |
| 3248 | char killchar(void) |
| 3249 | { return(*(char *)0); } |
| 3250 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3251 | #undef flushinp_sp |
| 3252 | int flushinp_sp( |
| 3253 | SCREEN *sp) |
| 3254 | { return(*(int *)0); } |
| 3255 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3256 | #undef flushinp |
| 3257 | int flushinp(void) |
| 3258 | { return(*(int *)0); } |
| 3259 | |
| 3260 | /* ./lib_keyname.c */ |
| 3261 | |
| 3262 | struct kn { short offset; int code; }; |
| 3263 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3264 | #undef keyname_sp |
| 3265 | const char *keyname_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3266 | SCREEN *sp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3267 | int c) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3268 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3269 | |
| 3270 | #undef keyname |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3271 | const char *keyname( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3272 | int c) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3273 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3274 | |
| 3275 | /* ./tinfo/lib_longname.c */ |
| 3276 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3277 | #undef longname_sp |
| 3278 | char *longname_sp( |
| 3279 | SCREEN *sp) |
| 3280 | { return(*(char **)0); } |
| 3281 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3282 | #undef longname |
| 3283 | char *longname(void) |
| 3284 | { return(*(char **)0); } |
| 3285 | |
| 3286 | /* ./tinfo/lib_napms.c */ |
| 3287 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3288 | #undef napms_sp |
| 3289 | int napms_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3290 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3291 | int ms) |
| 3292 | { return(*(int *)0); } |
| 3293 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3294 | #undef napms |
| 3295 | int napms( |
| 3296 | int ms) |
| 3297 | { return(*(int *)0); } |
| 3298 | |
| 3299 | /* ./tinfo/lib_options.c */ |
| 3300 | |
| 3301 | #undef idlok |
| 3302 | int idlok( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3303 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3304 | NCURSES_BOOL flag) |
| 3305 | { return(*(int *)0); } |
| 3306 | |
| 3307 | #undef idcok |
| 3308 | void idcok( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3309 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3310 | NCURSES_BOOL flag) |
| 3311 | { /* void */ } |
| 3312 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3313 | #undef halfdelay_sp |
| 3314 | int halfdelay_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3315 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3316 | int t) |
| 3317 | { return(*(int *)0); } |
| 3318 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3319 | #undef halfdelay |
| 3320 | int halfdelay( |
| 3321 | int t) |
| 3322 | { return(*(int *)0); } |
| 3323 | |
| 3324 | #undef nodelay |
| 3325 | int nodelay( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3326 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3327 | NCURSES_BOOL flag) |
| 3328 | { return(*(int *)0); } |
| 3329 | |
| 3330 | #undef notimeout |
| 3331 | int notimeout( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3332 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3333 | NCURSES_BOOL f) |
| 3334 | { return(*(int *)0); } |
| 3335 | |
| 3336 | #undef wtimeout |
| 3337 | void wtimeout( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3338 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3339 | int delay) |
| 3340 | { /* void */ } |
| 3341 | |
| 3342 | #undef keypad |
| 3343 | int keypad( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3344 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3345 | NCURSES_BOOL flag) |
| 3346 | { return(*(int *)0); } |
| 3347 | |
| 3348 | #undef meta |
| 3349 | int meta( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3350 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3351 | NCURSES_BOOL flag) |
| 3352 | { return(*(int *)0); } |
| 3353 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3354 | #undef curs_set_sp |
| 3355 | int curs_set_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3356 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3357 | int vis) |
| 3358 | { return(*(int *)0); } |
| 3359 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3360 | #undef curs_set |
| 3361 | int curs_set( |
| 3362 | int vis) |
| 3363 | { return(*(int *)0); } |
| 3364 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3365 | #undef typeahead_sp |
| 3366 | int typeahead_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3367 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3368 | int fd) |
| 3369 | { return(*(int *)0); } |
| 3370 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3371 | #undef typeahead |
| 3372 | int typeahead( |
| 3373 | int fd) |
| 3374 | { return(*(int *)0); } |
| 3375 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3376 | #undef has_key_sp |
| 3377 | int has_key_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3378 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3379 | int keycode) |
| 3380 | { return(*(int *)0); } |
| 3381 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3382 | #undef has_key |
| 3383 | int has_key( |
| 3384 | int keycode) |
| 3385 | { return(*(int *)0); } |
| 3386 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3387 | #undef _nc_putp_flush_sp |
| 3388 | int _nc_putp_flush_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3389 | SCREEN *sp, |
| 3390 | const char *name, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3391 | const char *value) |
| 3392 | { return(*(int *)0); } |
| 3393 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3394 | #undef _nc_keypad |
| 3395 | int _nc_keypad( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3396 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3397 | int flag) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3398 | { return(*(int *)0); } |
| 3399 | |
| 3400 | /* ./tinfo/lib_raw.c */ |
| 3401 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3402 | #undef raw_sp |
| 3403 | int raw_sp( |
| 3404 | SCREEN *sp) |
| 3405 | { return(*(int *)0); } |
| 3406 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3407 | #undef raw |
| 3408 | int raw(void) |
| 3409 | { return(*(int *)0); } |
| 3410 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3411 | #undef cbreak_sp |
| 3412 | int cbreak_sp( |
| 3413 | SCREEN *sp) |
| 3414 | { return(*(int *)0); } |
| 3415 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3416 | #undef cbreak |
| 3417 | int cbreak(void) |
| 3418 | { return(*(int *)0); } |
| 3419 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3420 | #undef qiflush_sp |
| 3421 | void qiflush_sp( |
| 3422 | SCREEN *sp) |
| 3423 | { /* void */ } |
| 3424 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3425 | #undef qiflush |
| 3426 | void qiflush(void) |
| 3427 | { /* void */ } |
| 3428 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3429 | #undef noraw_sp |
| 3430 | int noraw_sp( |
| 3431 | SCREEN *sp) |
| 3432 | { return(*(int *)0); } |
| 3433 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3434 | #undef noraw |
| 3435 | int noraw(void) |
| 3436 | { return(*(int *)0); } |
| 3437 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3438 | #undef nocbreak_sp |
| 3439 | int nocbreak_sp( |
| 3440 | SCREEN *sp) |
| 3441 | { return(*(int *)0); } |
| 3442 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3443 | #undef nocbreak |
| 3444 | int nocbreak(void) |
| 3445 | { return(*(int *)0); } |
| 3446 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3447 | #undef noqiflush_sp |
| 3448 | void noqiflush_sp( |
| 3449 | SCREEN *sp) |
| 3450 | { /* void */ } |
| 3451 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3452 | #undef noqiflush |
| 3453 | void noqiflush(void) |
| 3454 | { /* void */ } |
| 3455 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3456 | #undef intrflush_sp |
| 3457 | int intrflush_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3458 | SCREEN *sp, |
| 3459 | WINDOW *win, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3460 | NCURSES_BOOL flag) |
| 3461 | { return(*(int *)0); } |
| 3462 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3463 | #undef intrflush |
| 3464 | int intrflush( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3465 | WINDOW *win, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3466 | NCURSES_BOOL flag) |
| 3467 | { return(*(int *)0); } |
| 3468 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3469 | #undef is_nl_sp |
| 3470 | int is_nl_sp( |
| 3471 | SCREEN *sp) |
| 3472 | { return(*(int *)0); } |
| 3473 | |
| 3474 | #undef is_raw_sp |
| 3475 | int is_raw_sp( |
| 3476 | SCREEN *sp) |
| 3477 | { return(*(int *)0); } |
| 3478 | |
| 3479 | #undef is_cbreak_sp |
| 3480 | int is_cbreak_sp( |
| 3481 | SCREEN *sp) |
| 3482 | { return(*(int *)0); } |
| 3483 | |
| 3484 | #undef is_echo_sp |
| 3485 | int is_echo_sp( |
| 3486 | SCREEN *sp) |
| 3487 | { return(*(int *)0); } |
| 3488 | |
| 3489 | #undef is_nl |
| 3490 | int is_nl(void) |
| 3491 | { return(*(int *)0); } |
| 3492 | |
| 3493 | #undef is_raw |
| 3494 | int is_raw(void) |
| 3495 | { return(*(int *)0); } |
| 3496 | |
| 3497 | #undef is_cbreak |
| 3498 | int is_cbreak(void) |
| 3499 | { return(*(int *)0); } |
| 3500 | |
| 3501 | #undef is_echo |
| 3502 | int is_echo(void) |
| 3503 | { return(*(int *)0); } |
| 3504 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3505 | /* ./tinfo/lib_setup.c */ |
| 3506 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3507 | #undef _nc_ttytype |
| 3508 | char *_nc_ttytype(void) |
| 3509 | { return(*(char **)0); } |
| 3510 | |
| 3511 | #undef _nc_ptr_Lines |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3512 | int *_nc_ptr_Lines( |
| 3513 | SCREEN *sp) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3514 | { return(*(int **)0); } |
| 3515 | |
| 3516 | #undef _nc_LINES |
| 3517 | int _nc_LINES(void) |
| 3518 | { return(*(int *)0); } |
| 3519 | |
| 3520 | #undef _nc_ptr_Cols |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3521 | int *_nc_ptr_Cols( |
| 3522 | SCREEN *sp) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3523 | { return(*(int **)0); } |
| 3524 | |
| 3525 | #undef _nc_COLS |
| 3526 | int _nc_COLS(void) |
| 3527 | { return(*(int *)0); } |
| 3528 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3529 | #undef _nc_ptr_Tabsize |
| 3530 | int *_nc_ptr_Tabsize( |
| 3531 | SCREEN *sp) |
| 3532 | { return(*(int **)0); } |
| 3533 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3534 | #undef _nc_TABSIZE |
| 3535 | int _nc_TABSIZE(void) |
| 3536 | { return(*(int *)0); } |
| 3537 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3538 | #undef set_tabsize_sp |
| 3539 | int set_tabsize_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3540 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3541 | int value) |
| 3542 | { return(*(int *)0); } |
| 3543 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3544 | #undef set_tabsize |
| 3545 | int set_tabsize( |
| 3546 | int value) |
| 3547 | { return(*(int *)0); } |
| 3548 | |
| 3549 | #undef _nc_handle_sigwinch |
| 3550 | int _nc_handle_sigwinch( |
| 3551 | SCREEN *sp) |
| 3552 | { return(*(int *)0); } |
| 3553 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3554 | #undef use_env_sp |
| 3555 | void use_env_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3556 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3557 | NCURSES_BOOL f) |
| 3558 | { /* void */ } |
| 3559 | |
| 3560 | #undef use_tioctl_sp |
| 3561 | void use_tioctl_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3562 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3563 | NCURSES_BOOL f) |
| 3564 | { /* void */ } |
| 3565 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3566 | #undef use_env |
| 3567 | void use_env( |
| 3568 | NCURSES_BOOL f) |
| 3569 | { /* void */ } |
| 3570 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3571 | #undef use_tioctl |
| 3572 | void use_tioctl( |
| 3573 | NCURSES_BOOL f) |
| 3574 | { /* void */ } |
| 3575 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3576 | #undef _nc_get_screensize |
| 3577 | void _nc_get_screensize( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3578 | SCREEN *sp, |
| 3579 | int *linep, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3580 | int *colp) |
| 3581 | { /* void */ } |
| 3582 | |
| 3583 | #undef _nc_update_screensize |
| 3584 | void _nc_update_screensize( |
| 3585 | SCREEN *sp) |
| 3586 | { /* void */ } |
| 3587 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3588 | #undef _nc_setup_tinfo |
| 3589 | int _nc_setup_tinfo( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3590 | const char *const tn, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3591 | TERMTYPE *const tp) |
| 3592 | { return(*(int *)0); } |
| 3593 | |
| 3594 | #undef _nc_tinfo_cmdch |
| 3595 | void _nc_tinfo_cmdch( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3596 | TERMINAL *termp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3597 | int proto) |
| 3598 | { /* void */ } |
| 3599 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3600 | #undef _nc_get_locale |
| 3601 | char *_nc_get_locale(void) |
| 3602 | { return(*(char **)0); } |
| 3603 | |
| 3604 | #undef _nc_unicode_locale |
| 3605 | int _nc_unicode_locale(void) |
| 3606 | { return(*(int *)0); } |
| 3607 | |
| 3608 | #undef _nc_locale_breaks_acs |
| 3609 | int _nc_locale_breaks_acs( |
| 3610 | TERMINAL *termp) |
| 3611 | { return(*(int *)0); } |
| 3612 | |
| 3613 | #undef _nc_setupterm |
| 3614 | int _nc_setupterm( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3615 | const char *tname, |
| 3616 | int Filedes, |
| 3617 | int *errret, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3618 | int reuse) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3619 | { return(*(int *)0); } |
| 3620 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3621 | #undef _nc_find_prescr |
| 3622 | SCREEN *_nc_find_prescr(void) |
| 3623 | { return(*(SCREEN **)0); } |
| 3624 | |
| 3625 | #undef _nc_forget_prescr |
| 3626 | void _nc_forget_prescr(void) |
| 3627 | { /* void */ } |
| 3628 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3629 | #undef new_prescr |
| 3630 | SCREEN *new_prescr(void) |
| 3631 | { return(*(SCREEN **)0); } |
| 3632 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3633 | #undef setupterm |
| 3634 | int setupterm( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3635 | const char *tname, |
| 3636 | int Filedes, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3637 | int *errret) |
| 3638 | { return(*(int *)0); } |
| 3639 | |
| 3640 | /* ./tinfo/lib_termcap.c */ |
| 3641 | |
| 3642 | #undef UP |
| 3643 | char *UP; |
| 3644 | #undef BC |
| 3645 | char *BC; |
| 3646 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3647 | #undef tgetent_sp |
| 3648 | int tgetent_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3649 | SCREEN *sp, |
| 3650 | char *bufp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3651 | const char *name) |
| 3652 | { return(*(int *)0); } |
| 3653 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3654 | #undef tgetent |
| 3655 | int tgetent( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3656 | char *bufp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3657 | const char *name) |
| 3658 | { return(*(int *)0); } |
| 3659 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3660 | #undef tgetflag_sp |
| 3661 | int tgetflag_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3662 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3663 | const char *id) |
| 3664 | { return(*(int *)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3665 | |
| 3666 | #undef tgetflag |
| 3667 | int tgetflag( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3668 | const char *id) |
| 3669 | { return(*(int *)0); } |
| 3670 | |
| 3671 | #undef tgetnum_sp |
| 3672 | int tgetnum_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3673 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3674 | const char *id) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3675 | { return(*(int *)0); } |
| 3676 | |
| 3677 | #undef tgetnum |
| 3678 | int tgetnum( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3679 | const char *id) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3680 | { return(*(int *)0); } |
| 3681 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3682 | #undef tgetstr_sp |
| 3683 | char *tgetstr_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3684 | SCREEN *sp, |
| 3685 | const char *id, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3686 | char **area) |
| 3687 | { return(*(char **)0); } |
| 3688 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3689 | #undef tgetstr |
| 3690 | char *tgetstr( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3691 | const char *id, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3692 | char **area) |
| 3693 | { return(*(char **)0); } |
| 3694 | |
| 3695 | /* ./tinfo/lib_termname.c */ |
| 3696 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3697 | #undef termname_sp |
| 3698 | char *termname_sp( |
| 3699 | SCREEN *sp) |
| 3700 | { return(*(char **)0); } |
| 3701 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3702 | #undef termname |
| 3703 | char *termname(void) |
| 3704 | { return(*(char **)0); } |
| 3705 | |
| 3706 | /* ./tinfo/lib_tgoto.c */ |
| 3707 | |
| 3708 | #undef tgoto |
| 3709 | char *tgoto( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3710 | const char *string, |
| 3711 | int x, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3712 | int y) |
| 3713 | { return(*(char **)0); } |
| 3714 | |
| 3715 | /* ./tinfo/lib_ti.c */ |
| 3716 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3717 | #undef tigetflag_sp |
| 3718 | int tigetflag_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3719 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3720 | const char *str) |
| 3721 | { return(*(int *)0); } |
| 3722 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3723 | #undef tigetflag |
| 3724 | int tigetflag( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3725 | const char *str) |
| 3726 | { return(*(int *)0); } |
| 3727 | |
| 3728 | #undef tigetnum_sp |
| 3729 | int tigetnum_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3730 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3731 | const char *str) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3732 | { return(*(int *)0); } |
| 3733 | |
| 3734 | #undef tigetnum |
| 3735 | int tigetnum( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3736 | const char *str) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3737 | { return(*(int *)0); } |
| 3738 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3739 | #undef tigetstr_sp |
| 3740 | char *tigetstr_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3741 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3742 | const char *str) |
| 3743 | { return(*(char **)0); } |
| 3744 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3745 | #undef tigetstr |
| 3746 | char *tigetstr( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3747 | const char *str) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3748 | { return(*(char **)0); } |
| 3749 | |
| 3750 | /* ./tinfo/lib_tparm.c */ |
| 3751 | |
| 3752 | #undef _nc_tparm_err |
| 3753 | int _nc_tparm_err; |
| 3754 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3755 | #undef _nc_free_tparm |
| 3756 | void _nc_free_tparm( |
| 3757 | TERMINAL *termp) |
| 3758 | { /* void */ } |
| 3759 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3760 | #undef _nc_tparm_analyze |
| 3761 | int _nc_tparm_analyze( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3762 | TERMINAL *term, |
| 3763 | const char *string, |
| 3764 | char **p_is_s, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3765 | int *_nc_popcount) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3766 | { return(*(int *)0); } |
| 3767 | |
| 3768 | #undef tparm |
| 3769 | char *tparm( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3770 | const char *string, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3771 | ...) |
| 3772 | { return(*(char **)0); } |
| 3773 | |
| 3774 | #undef tiparm |
| 3775 | char *tiparm( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3776 | const char *string, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3777 | ...) |
| 3778 | { return(*(char **)0); } |
| 3779 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3780 | #undef tiparm_s |
| 3781 | char *tiparm_s( |
| 3782 | int num_expected, |
| 3783 | int tparm_type, |
| 3784 | const char *string, |
| 3785 | ...) |
| 3786 | { return(*(char **)0); } |
| 3787 | |
| 3788 | #undef tiscan_s |
| 3789 | int tiscan_s( |
| 3790 | int *num_expected, |
| 3791 | int *tparm_type, |
| 3792 | const char *string) |
| 3793 | { return(*(int *)0); } |
| 3794 | |
| 3795 | #undef _nc_tiparm |
| 3796 | char *_nc_tiparm( |
| 3797 | int expected, |
| 3798 | const char *string, |
| 3799 | ...) |
| 3800 | { return(*(char **)0); } |
| 3801 | |
| 3802 | #undef _nc_reset_tparm |
| 3803 | void _nc_reset_tparm( |
| 3804 | TERMINAL *term) |
| 3805 | { /* void */ } |
| 3806 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3807 | /* ./tinfo/lib_tputs.c */ |
| 3808 | |
| 3809 | #undef PC |
| 3810 | char PC; |
| 3811 | #undef ospeed |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3812 | short ospeed; |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3813 | #undef _nc_nulls_sent |
| 3814 | int _nc_nulls_sent; |
| 3815 | |
| 3816 | #undef _nc_set_no_padding |
| 3817 | void _nc_set_no_padding( |
| 3818 | SCREEN *sp) |
| 3819 | { /* void */ } |
| 3820 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3821 | #undef delay_output_sp |
| 3822 | int delay_output_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3823 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3824 | int ms) |
| 3825 | { return(*(int *)0); } |
| 3826 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3827 | #undef delay_output |
| 3828 | int delay_output( |
| 3829 | int ms) |
| 3830 | { return(*(int *)0); } |
| 3831 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3832 | #undef _nc_flush_sp |
| 3833 | void _nc_flush_sp( |
| 3834 | SCREEN *sp) |
| 3835 | { /* void */ } |
| 3836 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3837 | #undef _nc_flush |
| 3838 | void _nc_flush(void) |
| 3839 | { /* void */ } |
| 3840 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3841 | #undef _nc_outch_sp |
| 3842 | int _nc_outch_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3843 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3844 | int ch) |
| 3845 | { return(*(int *)0); } |
| 3846 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3847 | #undef _nc_outch |
| 3848 | int _nc_outch( |
| 3849 | int ch) |
| 3850 | { return(*(int *)0); } |
| 3851 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3852 | #undef _nc_putchar_sp |
| 3853 | int _nc_putchar_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3854 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3855 | int ch) |
| 3856 | { return(*(int *)0); } |
| 3857 | |
| 3858 | #undef _nc_putchar |
| 3859 | int _nc_putchar( |
| 3860 | int ch) |
| 3861 | { return(*(int *)0); } |
| 3862 | |
| 3863 | #undef putp_sp |
| 3864 | int putp_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3865 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3866 | const char *string) |
| 3867 | { return(*(int *)0); } |
| 3868 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3869 | #undef putp |
| 3870 | int putp( |
| 3871 | const char *string) |
| 3872 | { return(*(int *)0); } |
| 3873 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3874 | #undef _nc_putp_sp |
| 3875 | int _nc_putp_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3876 | SCREEN *sp, |
| 3877 | const char *name, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3878 | const char *string) |
| 3879 | { return(*(int *)0); } |
| 3880 | |
| 3881 | #undef _nc_putp |
| 3882 | int _nc_putp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3883 | const char *name, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3884 | const char *string) |
| 3885 | { return(*(int *)0); } |
| 3886 | |
| 3887 | #undef tputs_sp |
| 3888 | int tputs_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3889 | SCREEN *sp, |
| 3890 | const char *string, |
| 3891 | int affcnt, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3892 | NCURSES_OUTC_sp outc) |
| 3893 | { return(*(int *)0); } |
| 3894 | |
| 3895 | #undef _nc_outc_wrapper |
| 3896 | int _nc_outc_wrapper( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3897 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3898 | int c) |
| 3899 | { return(*(int *)0); } |
| 3900 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3901 | #undef tputs |
| 3902 | int tputs( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3903 | const char *string, |
| 3904 | int affcnt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3905 | int (*outc)( |
| 3906 | int p1)) |
| 3907 | { return(*(int *)0); } |
| 3908 | |
| 3909 | /* ./trace/lib_trace.c */ |
| 3910 | |
| 3911 | #undef _nc_tracing |
| 3912 | unsigned _nc_tracing; |
| 3913 | |
| 3914 | #undef _nc__nc_tputs_trace |
| 3915 | const char *_nc__nc_tputs_trace(void) |
| 3916 | { return(*(const char **)0); } |
| 3917 | |
| 3918 | #undef _nc__nc_outchars |
| 3919 | long _nc__nc_outchars(void) |
| 3920 | { return(*(long *)0); } |
| 3921 | |
| 3922 | #undef _nc_set_tputs_trace |
| 3923 | void _nc_set_tputs_trace( |
| 3924 | const char *s) |
| 3925 | { /* void */ } |
| 3926 | |
| 3927 | #undef _nc_count_outchars |
| 3928 | void _nc_count_outchars( |
| 3929 | long increment) |
| 3930 | { /* void */ } |
| 3931 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3932 | #undef curses_trace |
| 3933 | unsigned curses_trace( |
| 3934 | unsigned tracelevel) |
| 3935 | { return(*(unsigned *)0); } |
| 3936 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3937 | #undef trace |
| 3938 | void trace( |
| 3939 | const unsigned int tracelevel) |
| 3940 | { /* void */ } |
| 3941 | |
| 3942 | #undef _tracef |
| 3943 | void _tracef( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3944 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3945 | ...) |
| 3946 | { /* void */ } |
| 3947 | |
| 3948 | #undef _nc_retrace_bool |
| 3949 | NCURSES_BOOL _nc_retrace_bool( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3950 | int code) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3951 | { return(*(NCURSES_BOOL *)0); } |
| 3952 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3953 | #undef _nc_retrace_char |
| 3954 | char _nc_retrace_char( |
| 3955 | int code) |
| 3956 | { return(*(char *)0); } |
| 3957 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3958 | #undef _nc_retrace_int |
| 3959 | int _nc_retrace_int( |
| 3960 | int code) |
| 3961 | { return(*(int *)0); } |
| 3962 | |
| 3963 | #undef _nc_retrace_unsigned |
| 3964 | unsigned _nc_retrace_unsigned( |
| 3965 | unsigned code) |
| 3966 | { return(*(unsigned *)0); } |
| 3967 | |
| 3968 | #undef _nc_retrace_ptr |
| 3969 | char *_nc_retrace_ptr( |
| 3970 | char *code) |
| 3971 | { return(*(char **)0); } |
| 3972 | |
| 3973 | #undef _nc_retrace_cptr |
| 3974 | const char *_nc_retrace_cptr( |
| 3975 | const char *code) |
| 3976 | { return(*(const char **)0); } |
| 3977 | |
| 3978 | #undef _nc_retrace_cvoid_ptr |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 3979 | const void *_nc_retrace_cvoid_ptr( |
| 3980 | const void *code) |
| 3981 | { return(*(const void **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 3982 | |
| 3983 | #undef _nc_retrace_void_ptr |
| 3984 | void *_nc_retrace_void_ptr( |
| 3985 | void *code) |
| 3986 | { return(*(void **)0); } |
| 3987 | |
| 3988 | #undef _nc_retrace_sp |
| 3989 | SCREEN *_nc_retrace_sp( |
| 3990 | SCREEN *code) |
| 3991 | { return(*(SCREEN **)0); } |
| 3992 | |
| 3993 | #undef _nc_retrace_win |
| 3994 | WINDOW *_nc_retrace_win( |
| 3995 | WINDOW *code) |
| 3996 | { return(*(WINDOW **)0); } |
| 3997 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 3998 | #undef _nc_fmt_funcptr |
| 3999 | char *_nc_fmt_funcptr( |
| 4000 | char *target, |
| 4001 | const char *source, |
| 4002 | size_t size) |
| 4003 | { return(*(char **)0); } |
| 4004 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4005 | #undef _nc_use_tracef |
| 4006 | int _nc_use_tracef( |
| 4007 | unsigned mask) |
| 4008 | { return(*(int *)0); } |
| 4009 | |
| 4010 | #undef _nc_locked_tracef |
| 4011 | void _nc_locked_tracef( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4012 | const char *fmt, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4013 | ...) |
| 4014 | { /* void */ } |
| 4015 | |
| 4016 | /* ./trace/lib_traceatr.c */ |
| 4017 | |
| 4018 | #undef _traceattr2 |
| 4019 | char *_traceattr2( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4020 | int bufnum, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4021 | chtype newmode) |
| 4022 | { return(*(char **)0); } |
| 4023 | |
| 4024 | #undef _traceattr |
| 4025 | char *_traceattr( |
| 4026 | attr_t newmode) |
| 4027 | { return(*(char **)0); } |
| 4028 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4029 | #undef _nc_retrace_int_attr_t |
| 4030 | int _nc_retrace_int_attr_t( |
| 4031 | attr_t code) |
| 4032 | { return(*(int *)0); } |
| 4033 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4034 | #undef _nc_retrace_attr_t |
| 4035 | attr_t _nc_retrace_attr_t( |
| 4036 | attr_t code) |
| 4037 | { return(*(attr_t *)0); } |
| 4038 | |
| 4039 | #undef _nc_altcharset_name |
| 4040 | const char *_nc_altcharset_name( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4041 | attr_t attr, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4042 | chtype ch) |
| 4043 | { return(*(const char **)0); } |
| 4044 | |
| 4045 | #undef _tracechtype2 |
| 4046 | char *_tracechtype2( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4047 | int bufnum, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4048 | chtype ch) |
| 4049 | { return(*(char **)0); } |
| 4050 | |
| 4051 | #undef _tracechtype |
| 4052 | char *_tracechtype( |
| 4053 | chtype ch) |
| 4054 | { return(*(char **)0); } |
| 4055 | |
| 4056 | #undef _nc_retrace_chtype |
| 4057 | chtype _nc_retrace_chtype( |
| 4058 | chtype code) |
| 4059 | { return(*(chtype *)0); } |
| 4060 | |
| 4061 | /* ./trace/lib_tracebits.c */ |
| 4062 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4063 | #undef _nc_trace_ttymode |
| 4064 | char *_nc_trace_ttymode( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4065 | const struct termios *tty) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4066 | { return(*(char **)0); } |
| 4067 | |
| 4068 | #undef _nc_tracebits |
| 4069 | char *_nc_tracebits(void) |
| 4070 | { return(*(char **)0); } |
| 4071 | |
| 4072 | /* ./trace/lib_tracechr.c */ |
| 4073 | |
| 4074 | #undef _nc_tracechar |
| 4075 | char *_nc_tracechar( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4076 | SCREEN *sp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4077 | int ch) |
| 4078 | { return(*(char **)0); } |
| 4079 | |
| 4080 | #undef _tracechar |
| 4081 | char *_tracechar( |
| 4082 | int ch) |
| 4083 | { return(*(char **)0); } |
| 4084 | |
| 4085 | /* ./tinfo/lib_ttyflags.c */ |
| 4086 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4087 | #undef _nc_get_tty_mode_sp |
| 4088 | int _nc_get_tty_mode_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4089 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4090 | struct termios *buf) |
| 4091 | { return(*(int *)0); } |
| 4092 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4093 | #undef _nc_get_tty_mode |
| 4094 | int _nc_get_tty_mode( |
| 4095 | struct termios *buf) |
| 4096 | { return(*(int *)0); } |
| 4097 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4098 | #undef _nc_set_tty_mode_sp |
| 4099 | int _nc_set_tty_mode_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4100 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4101 | struct termios *buf) |
| 4102 | { return(*(int *)0); } |
| 4103 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4104 | #undef _nc_set_tty_mode |
| 4105 | int _nc_set_tty_mode( |
| 4106 | struct termios *buf) |
| 4107 | { return(*(int *)0); } |
| 4108 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4109 | #undef def_shell_mode_sp |
| 4110 | int def_shell_mode_sp( |
| 4111 | SCREEN *sp) |
| 4112 | { return(*(int *)0); } |
| 4113 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4114 | #undef def_shell_mode |
| 4115 | int def_shell_mode(void) |
| 4116 | { return(*(int *)0); } |
| 4117 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4118 | #undef def_prog_mode_sp |
| 4119 | int def_prog_mode_sp( |
| 4120 | SCREEN *sp) |
| 4121 | { return(*(int *)0); } |
| 4122 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4123 | #undef def_prog_mode |
| 4124 | int def_prog_mode(void) |
| 4125 | { return(*(int *)0); } |
| 4126 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4127 | #undef reset_prog_mode_sp |
| 4128 | int reset_prog_mode_sp( |
| 4129 | SCREEN *sp) |
| 4130 | { return(*(int *)0); } |
| 4131 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4132 | #undef reset_prog_mode |
| 4133 | int reset_prog_mode(void) |
| 4134 | { return(*(int *)0); } |
| 4135 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4136 | #undef reset_shell_mode_sp |
| 4137 | int reset_shell_mode_sp( |
| 4138 | SCREEN *sp) |
| 4139 | { return(*(int *)0); } |
| 4140 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4141 | #undef reset_shell_mode |
| 4142 | int reset_shell_mode(void) |
| 4143 | { return(*(int *)0); } |
| 4144 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4145 | #undef savetty_sp |
| 4146 | int savetty_sp( |
| 4147 | SCREEN *sp) |
| 4148 | { return(*(int *)0); } |
| 4149 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4150 | #undef savetty |
| 4151 | int savetty(void) |
| 4152 | { return(*(int *)0); } |
| 4153 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4154 | #undef resetty_sp |
| 4155 | int resetty_sp( |
| 4156 | SCREEN *sp) |
| 4157 | { return(*(int *)0); } |
| 4158 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4159 | #undef resetty |
| 4160 | int resetty(void) |
| 4161 | { return(*(int *)0); } |
| 4162 | |
| 4163 | /* ./tty/lib_twait.c */ |
| 4164 | |
| 4165 | #undef _nc_timed_wait |
| 4166 | int _nc_timed_wait( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4167 | SCREEN *sp, |
| 4168 | int mode, |
| 4169 | int milliseconds, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4170 | int *timeleft) |
| 4171 | { return(*(int *)0); } |
| 4172 | |
| 4173 | /* ./tinfo/name_match.c */ |
| 4174 | |
| 4175 | #undef _nc_first_name |
| 4176 | char *_nc_first_name( |
| 4177 | const char *const sp) |
| 4178 | { return(*(char **)0); } |
| 4179 | |
| 4180 | #undef _nc_name_match |
| 4181 | int _nc_name_match( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4182 | const char *const namelst, |
| 4183 | const char *const name, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4184 | const char *const delim) |
| 4185 | { return(*(int *)0); } |
| 4186 | |
| 4187 | /* ./names.c */ |
| 4188 | |
| 4189 | #undef _nc_boolnames |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4190 | const char *const *_nc_boolnames(void) |
| 4191 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4192 | |
| 4193 | #undef _nc_boolfnames |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4194 | const char *const *_nc_boolfnames(void) |
| 4195 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4196 | |
| 4197 | #undef _nc_numnames |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4198 | const char *const *_nc_numnames(void) |
| 4199 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4200 | |
| 4201 | #undef _nc_numfnames |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4202 | const char *const *_nc_numfnames(void) |
| 4203 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4204 | |
| 4205 | #undef _nc_strnames |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4206 | const char *const *_nc_strnames(void) |
| 4207 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4208 | |
| 4209 | #undef _nc_strfnames |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4210 | const char *const *_nc_strfnames(void) |
| 4211 | { return(*(const char **)0); } |
| 4212 | |
| 4213 | /* ./tinfo/obsolete.c */ |
| 4214 | |
| 4215 | #undef _nc_set_buffer_sp |
| 4216 | void _nc_set_buffer_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4217 | SCREEN *sp, |
| 4218 | FILE *ofp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4219 | int buffered) |
| 4220 | { /* void */ } |
| 4221 | |
| 4222 | #undef _nc_set_buffer |
| 4223 | void _nc_set_buffer( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4224 | FILE *ofp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4225 | int buffered) |
| 4226 | { /* void */ } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4227 | |
| 4228 | /* ./tinfo/read_entry.c */ |
| 4229 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4230 | #undef _nc_init_termtype |
| 4231 | void _nc_init_termtype( |
| 4232 | TERMTYPE *const tp) |
| 4233 | { /* void */ } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4234 | |
| 4235 | #undef _nc_read_termtype |
| 4236 | int _nc_read_termtype( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4237 | TERMTYPE *ptr, |
| 4238 | char *buffer, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4239 | int limit) |
| 4240 | { return(*(int *)0); } |
| 4241 | |
| 4242 | #undef _nc_read_file_entry |
| 4243 | int _nc_read_file_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4244 | const char *const filename, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4245 | TERMTYPE *ptr) |
| 4246 | { return(*(int *)0); } |
| 4247 | |
| 4248 | #undef _nc_read_entry |
| 4249 | int _nc_read_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4250 | const char *const name, |
| 4251 | char *const filename, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4252 | TERMTYPE *const tp) |
| 4253 | { return(*(int *)0); } |
| 4254 | |
| 4255 | /* ./tinfo/read_termcap.c */ |
| 4256 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4257 | #undef _nc_read_termcap_entry |
| 4258 | int _nc_read_termcap_entry( |
| 4259 | const char *const tn, |
| 4260 | TERMTYPE *const tp) |
| 4261 | { return(*(int *)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4262 | |
| 4263 | /* ./tinfo/strings.c */ |
| 4264 | |
| 4265 | #undef _nc_str_init |
| 4266 | string_desc *_nc_str_init( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4267 | string_desc *dst, |
| 4268 | char *src, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4269 | size_t len) |
| 4270 | { return(*(string_desc **)0); } |
| 4271 | |
| 4272 | #undef _nc_str_null |
| 4273 | string_desc *_nc_str_null( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4274 | string_desc *dst, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4275 | size_t len) |
| 4276 | { return(*(string_desc **)0); } |
| 4277 | |
| 4278 | #undef _nc_str_copy |
| 4279 | string_desc *_nc_str_copy( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4280 | string_desc *dst, |
| 4281 | const string_desc *const src) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4282 | { return(*(string_desc **)0); } |
| 4283 | |
| 4284 | #undef _nc_safe_strcat |
| 4285 | NCURSES_BOOL _nc_safe_strcat( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4286 | string_desc *dst, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4287 | const char *src) |
| 4288 | { return(*(NCURSES_BOOL *)0); } |
| 4289 | |
| 4290 | #undef _nc_safe_strcpy |
| 4291 | NCURSES_BOOL _nc_safe_strcpy( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4292 | string_desc *dst, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4293 | const char *src) |
| 4294 | { return(*(NCURSES_BOOL *)0); } |
| 4295 | |
| 4296 | /* ./trace/trace_buf.c */ |
| 4297 | |
| 4298 | #undef _nc_trace_buf |
| 4299 | char *_nc_trace_buf( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4300 | int bufnum, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4301 | size_t want) |
| 4302 | { return(*(char **)0); } |
| 4303 | |
| 4304 | #undef _nc_trace_bufcat |
| 4305 | char *_nc_trace_bufcat( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4306 | int bufnum, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4307 | const char *value) |
| 4308 | { return(*(char **)0); } |
| 4309 | |
| 4310 | /* ./trace/trace_tries.c */ |
| 4311 | |
| 4312 | #undef _nc_trace_tries |
| 4313 | void _nc_trace_tries( |
| 4314 | TRIES *tree) |
| 4315 | { /* void */ } |
| 4316 | |
| 4317 | /* ./base/tries.c */ |
| 4318 | |
| 4319 | #undef _nc_expand_try |
| 4320 | char *_nc_expand_try( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4321 | TRIES *tree, |
| 4322 | unsigned code, |
| 4323 | int *count, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4324 | size_t len) |
| 4325 | { return(*(char **)0); } |
| 4326 | |
| 4327 | #undef _nc_remove_key |
| 4328 | int _nc_remove_key( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4329 | TRIES **tree, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4330 | unsigned code) |
| 4331 | { return(*(int *)0); } |
| 4332 | |
| 4333 | #undef _nc_remove_string |
| 4334 | int _nc_remove_string( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4335 | TRIES **tree, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4336 | const char *string) |
| 4337 | { return(*(int *)0); } |
| 4338 | |
| 4339 | /* ./tinfo/trim_sgr0.c */ |
| 4340 | |
| 4341 | #undef _nc_trim_sgr0 |
| 4342 | char *_nc_trim_sgr0( |
| 4343 | TERMTYPE *tp) |
| 4344 | { return(*(char **)0); } |
| 4345 | |
| 4346 | /* ./unctrl.c */ |
| 4347 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4348 | #undef unctrl_sp |
| 4349 | const char *unctrl_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4350 | SCREEN *sp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4351 | chtype ch) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4352 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4353 | |
| 4354 | #undef unctrl |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4355 | const char *unctrl( |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4356 | chtype ch) |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4357 | { return(*(const char **)0); } |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4358 | |
| 4359 | /* ./trace/visbuf.c */ |
| 4360 | |
| 4361 | #undef _nc_visbuf2 |
| 4362 | const char *_nc_visbuf2( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4363 | int bufnum, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4364 | const char *buf) |
| 4365 | { return(*(const char **)0); } |
| 4366 | |
| 4367 | #undef _nc_visbuf |
| 4368 | const char *_nc_visbuf( |
| 4369 | const char *buf) |
| 4370 | { return(*(const char **)0); } |
| 4371 | |
| 4372 | #undef _nc_visbufn |
| 4373 | const char *_nc_visbufn( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4374 | const char *buf, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4375 | int len) |
| 4376 | { return(*(const char **)0); } |
| 4377 | |
| 4378 | #undef _nc_viscbuf2 |
| 4379 | const char *_nc_viscbuf2( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4380 | int bufnum, |
| 4381 | const chtype *buf, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4382 | int len) |
| 4383 | { return(*(const char **)0); } |
| 4384 | |
| 4385 | #undef _nc_viscbuf |
| 4386 | const char *_nc_viscbuf( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4387 | const chtype *buf, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4388 | int len) |
| 4389 | { return(*(const char **)0); } |
| 4390 | |
| 4391 | /* ./tinfo/alloc_entry.c */ |
| 4392 | |
| 4393 | #undef _nc_init_entry |
| 4394 | void _nc_init_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4395 | ENTRY *const tp) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4396 | { /* void */ } |
| 4397 | |
| 4398 | #undef _nc_copy_entry |
| 4399 | ENTRY *_nc_copy_entry( |
| 4400 | ENTRY *oldp) |
| 4401 | { return(*(ENTRY **)0); } |
| 4402 | |
| 4403 | #undef _nc_save_str |
| 4404 | char *_nc_save_str( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4405 | const char *string) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4406 | { return(*(char **)0); } |
| 4407 | |
| 4408 | #undef _nc_wrap_entry |
| 4409 | void _nc_wrap_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4410 | ENTRY *const ep, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4411 | NCURSES_BOOL copy_strings) |
| 4412 | { /* void */ } |
| 4413 | |
| 4414 | #undef _nc_merge_entry |
| 4415 | void _nc_merge_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4416 | ENTRY *const target, |
| 4417 | ENTRY *const source) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4418 | { /* void */ } |
| 4419 | |
| 4420 | /* ./tinfo/captoinfo.c */ |
| 4421 | |
| 4422 | #undef _nc_captoinfo |
| 4423 | char *_nc_captoinfo( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4424 | const char *cap, |
| 4425 | const char *s, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4426 | int const parameterized) |
| 4427 | { return(*(char **)0); } |
| 4428 | |
| 4429 | #undef _nc_infotocap |
| 4430 | char *_nc_infotocap( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4431 | const char *cap, |
| 4432 | const char *str, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4433 | int const parameterized) |
| 4434 | { return(*(char **)0); } |
| 4435 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4436 | /* ./tinfo/comp_expand.c */ |
| 4437 | |
| 4438 | #undef _nc_tic_expand |
| 4439 | char *_nc_tic_expand( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4440 | const char *srcp, |
| 4441 | NCURSES_BOOL tic_format, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4442 | int numbers) |
| 4443 | { return(*(char **)0); } |
| 4444 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4445 | /* ./tinfo/comp_parse.c */ |
| 4446 | |
| 4447 | #undef _nc_check_termtype2 |
| 4448 | void (*_nc_check_termtype2)( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4449 | TERMTYPE *p1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4450 | NCURSES_BOOL p2); |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4451 | |
| 4452 | #undef _nc_entry_match |
| 4453 | NCURSES_BOOL _nc_entry_match( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4454 | char *n1, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4455 | char *n2) |
| 4456 | { return(*(NCURSES_BOOL *)0); } |
| 4457 | |
| 4458 | #undef _nc_read_entry_source |
| 4459 | void _nc_read_entry_source( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4460 | FILE *fp, |
| 4461 | char *buf, |
| 4462 | int literal, |
| 4463 | NCURSES_BOOL silent, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4464 | NCURSES_BOOL (*hook)( |
| 4465 | ENTRY *p1)) |
| 4466 | { /* void */ } |
| 4467 | |
| 4468 | #undef _nc_resolve_uses2 |
| 4469 | int _nc_resolve_uses2( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4470 | NCURSES_BOOL fullresolve, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4471 | NCURSES_BOOL literal) |
| 4472 | { return(*(int *)0); } |
| 4473 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4474 | /* ./tinfo/comp_scan.c */ |
| 4475 | |
| 4476 | #undef _nc_syntax |
| 4477 | int _nc_syntax; |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4478 | #undef _nc_strict_bsd |
| 4479 | int _nc_strict_bsd; |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4480 | #undef _nc_curr_file_pos |
| 4481 | long _nc_curr_file_pos; |
| 4482 | #undef _nc_comment_start |
| 4483 | long _nc_comment_start; |
| 4484 | #undef _nc_comment_end |
| 4485 | long _nc_comment_end; |
| 4486 | #undef _nc_start_line |
| 4487 | long _nc_start_line; |
| 4488 | #undef _nc_curr_token |
| 4489 | struct token _nc_curr_token; |
| 4490 | #undef _nc_disable_period |
| 4491 | NCURSES_BOOL _nc_disable_period; |
| 4492 | |
| 4493 | #undef _nc_reset_input |
| 4494 | void _nc_reset_input( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4495 | FILE *fp, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4496 | char *buf) |
| 4497 | { /* void */ } |
| 4498 | |
| 4499 | #undef _nc_get_token |
| 4500 | int _nc_get_token( |
| 4501 | NCURSES_BOOL silent) |
| 4502 | { return(*(int *)0); } |
| 4503 | |
| 4504 | #undef _nc_trans_string |
| 4505 | int _nc_trans_string( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4506 | char *ptr, |
| 4507 | const char *const last) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4508 | { return(*(int *)0); } |
| 4509 | |
| 4510 | #undef _nc_push_token |
| 4511 | void _nc_push_token( |
| 4512 | int tokclass) |
| 4513 | { /* void */ } |
| 4514 | |
| 4515 | #undef _nc_panic_mode |
| 4516 | void _nc_panic_mode( |
| 4517 | char ch) |
| 4518 | { /* void */ } |
| 4519 | |
| 4520 | /* ./tinfo/parse_entry.c */ |
| 4521 | |
| 4522 | #undef _nc_parse_entry |
| 4523 | int _nc_parse_entry( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4524 | ENTRY *entryp, |
| 4525 | int literal, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4526 | NCURSES_BOOL silent) |
| 4527 | { return(*(int *)0); } |
| 4528 | |
| 4529 | #undef _nc_capcmp |
| 4530 | int _nc_capcmp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4531 | const char *s, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4532 | const char *t) |
| 4533 | { return(*(int *)0); } |
| 4534 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4535 | /* ./tinfo/write_entry.c */ |
| 4536 | |
| 4537 | #undef _nc_set_writedir |
| 4538 | void _nc_set_writedir( |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4539 | const char *dir) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4540 | { /* void */ } |
| 4541 | |
| 4542 | #undef _nc_write_entry |
| 4543 | void _nc_write_entry( |
| 4544 | TERMTYPE *const tp) |
| 4545 | { /* void */ } |
| 4546 | |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4547 | #undef _nc_write_object |
| 4548 | int _nc_write_object( |
| 4549 | TERMTYPE *tp, |
| 4550 | char *buffer, |
| 4551 | unsigned *offset, |
| 4552 | unsigned limit) |
| 4553 | { return(*(int *)0); } |
| 4554 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4555 | #undef _nc_tic_written |
| 4556 | int _nc_tic_written(void) |
| 4557 | { return(*(int *)0); } |
| 4558 | |
| 4559 | /* ./base/define_key.c */ |
| 4560 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4561 | #undef define_key_sp |
| 4562 | int define_key_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4563 | SCREEN *sp, |
| 4564 | const char *str, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4565 | int keycode) |
| 4566 | { return(*(int *)0); } |
| 4567 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4568 | #undef define_key |
| 4569 | int define_key( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4570 | const char *str, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4571 | int keycode) |
| 4572 | { return(*(int *)0); } |
| 4573 | |
| 4574 | /* ./tinfo/hashed_db.c */ |
| 4575 | |
| 4576 | #undef _nc_hashed_db |
| 4577 | void _nc_hashed_db(void) |
| 4578 | { /* void */ } |
| 4579 | |
| 4580 | /* ./base/key_defined.c */ |
| 4581 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4582 | #undef key_defined_sp |
| 4583 | int key_defined_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4584 | SCREEN *sp, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4585 | const char *str) |
| 4586 | { return(*(int *)0); } |
| 4587 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4588 | #undef key_defined |
| 4589 | int key_defined( |
| 4590 | const char *str) |
| 4591 | { return(*(int *)0); } |
| 4592 | |
| 4593 | /* ./base/keybound.c */ |
| 4594 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4595 | #undef keybound_sp |
| 4596 | char *keybound_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4597 | SCREEN *sp, |
| 4598 | int code, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4599 | int count) |
| 4600 | { return(*(char **)0); } |
| 4601 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4602 | #undef keybound |
| 4603 | char *keybound( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4604 | int code, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4605 | int count) |
| 4606 | { return(*(char **)0); } |
| 4607 | |
| 4608 | /* ./base/keyok.c */ |
| 4609 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4610 | #undef keyok_sp |
| 4611 | int keyok_sp( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4612 | SCREEN *sp, |
| 4613 | int c, |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 4614 | NCURSES_BOOL flag) |
| 4615 | { return(*(int *)0); } |
| 4616 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4617 | #undef keyok |
| 4618 | int keyok( |
micky387 | 9b9f5e7 | 2025-07-08 18:04:53 -0400 | [diff] [blame] | 4619 | int c, |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 4620 | NCURSES_BOOL flag) |
| 4621 | { return(*(int *)0); } |
| 4622 | |
| 4623 | /* ./base/version.c */ |
| 4624 | |
| 4625 | #undef curses_version |
| 4626 | const char *curses_version(void) |
| 4627 | { return(*(const char **)0); } |