1/**************************************************************************** 2 * Copyright (c) 1998 Free Software Foundation, Inc. * 3 * * 4 * Permission is hereby granted, free of charge, to any person obtaining a * 5 * copy of this software and associated documentation files (the * 6 * "Software"), to deal in the Software without restriction, including * 7 * without limitation the rights to use, copy, modify, merge, publish, * 8 * distribute, distribute with modifications, sublicense, and/or sell * 9 * copies of the Software, and to permit persons to whom the Software is * 10 * furnished to do so, subject to the following conditions: * 11 * * 12 * The above copyright notice and this permission notice shall be included * 13 * in all copies or substantial portions of the Software. * 14 * * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * 16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * 17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * 18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * 20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * 21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * 22 * * 23 * Except as contained in this notice, the name(s) of the above copyright * 24 * holders shall not be used in advertising or otherwise to promote the * 25 * sale, use or other dealings in this Software without prior written * 26 * authorization. * 27 ****************************************************************************/ 28 29/**************************************************************************** 30 * Author: Thomas E. Dickey <dickey@clark.net> 1997 * 31 ****************************************************************************/ 32/* LINTLIBRARY */ 33 34/* ./panel.c */ 35 36#include "panel.priv.h" 37 38#undef _nc_free_obscure 39void _nc_free_obscure( 40 PANEL *pan) 41 { /* void */ } 42 43#undef _nc_override 44void _nc_override( 45 const PANEL *pan, 46 int show) 47 { /* void */ } 48 49#undef _nc_calculate_obscure 50void _nc_calculate_obscure(void) 51 { /* void */ } 52 53#undef _nc_panel_is_linked 54bool _nc_panel_is_linked( 55 const PANEL *pan) 56 { return(*(bool *)0); } 57 58#undef _nc_panel_link_bottom 59void _nc_panel_link_bottom( 60 PANEL *pan) 61 { /* void */ } 62 63/* ./p_above.c */ 64 65#undef panel_above 66PANEL *panel_above( 67 const PANEL *pan) 68 { return(*(PANEL **)0); } 69 70/* ./p_below.c */ 71 72#undef panel_below 73PANEL *panel_below( 74 const PANEL *pan) 75 { return(*(PANEL **)0); } 76 77/* ./p_bottom.c */ 78 79#undef bottom_panel 80int bottom_panel( 81 PANEL *pan) 82 { return(*(int *)0); } 83 84/* ./p_delete.c */ 85 86#undef del_panel 87int del_panel( 88 PANEL *pan) 89 { return(*(int *)0); } 90 91/* ./p_hide.c */ 92 93#undef hide_panel 94int hide_panel( 95 PANEL *pan) 96 { return(*(int *)0); } 97 98/* ./p_hidden.c */ 99 100#undef panel_hidden 101int panel_hidden( 102 const PANEL *pan) 103 { return(*(int *)0); } 104 105/* ./p_move.c */ 106 107#undef move_panel 108int move_panel( 109 PANEL *pan, 110 int starty, 111 int startx) 112 { return(*(int *)0); } 113 114/* ./p_new.c */ 115 116#undef new_panel 117PANEL *new_panel( 118 WINDOW *win) 119 { return(*(PANEL **)0); } 120 121/* ./p_replace.c */ 122 123#undef replace_panel 124int replace_panel( 125 PANEL *pan, 126 WINDOW *win) 127 { return(*(int *)0); } 128 129/* ./p_show.c */ 130 131#undef show_panel 132int show_panel( 133 PANEL *pan) 134 { return(*(int *)0); } 135 136/* ./p_top.c */ 137 138#undef top_panel 139int top_panel( 140 PANEL *pan) 141 { return(*(int *)0); } 142 143/* ./p_update.c */ 144 145#undef update_panels 146void update_panels(void) 147 { /* void */ } 148 149/* ./p_user.c */ 150 151#undef set_panel_userptr 152int set_panel_userptr( 153 PANEL *pan, 154 void *uptr) 155 { return(*(int *)0); } 156 157#undef panel_userptr 158void *panel_userptr( 159 const PANEL *pan) 160 { return(*(void **)0); } 161 162/* ./p_win.c */ 163 164#undef panel_window 165WINDOW *panel_window( 166 const PANEL *pan) 167 { return(*(WINDOW **)0); } 168