1/**************************************************************************** 2 * Copyright (c) 1998-2002,2005 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 1997,2002,2005 * 31 ****************************************************************************/ 32/* LINTLIBRARY */ 33 34/* ./panel.c */ 35 36#include "panel.priv.h" 37 38#undef _nc_retrace_panel 39PANEL *_nc_retrace_panel( 40 PANEL *pan) 41 { return(*(PANEL **)0); } 42 43#undef _nc_my_visbuf 44const char *_nc_my_visbuf( 45 const void *ptr) 46 { return(*(const char **)0); } 47 48#undef _nc_dPanel 49void _nc_dPanel( 50 const char *text, 51 const PANEL *pan) 52 { /* void */ } 53 54#undef _nc_dStack 55void _nc_dStack( 56 const char *fmt, 57 int num, 58 const PANEL *pan) 59 { /* void */ } 60 61#undef _nc_Wnoutrefresh 62void _nc_Wnoutrefresh( 63 const PANEL *pan) 64 { /* void */ } 65 66#undef _nc_Touchpan 67void _nc_Touchpan( 68 const PANEL *pan) 69 { /* void */ } 70 71#undef _nc_Touchline 72void _nc_Touchline( 73 const PANEL *pan, 74 int start, 75 int count) 76 { /* void */ } 77 78/* ./p_above.c */ 79 80#undef panel_above 81PANEL *panel_above( 82 const PANEL *pan) 83 { return(*(PANEL **)0); } 84 85/* ./p_below.c */ 86 87#undef panel_below 88PANEL *panel_below( 89 const PANEL *pan) 90 { return(*(PANEL **)0); } 91 92/* ./p_bottom.c */ 93 94#undef bottom_panel 95int bottom_panel( 96 PANEL *pan) 97 { return(*(int *)0); } 98 99/* ./p_delete.c */ 100 101#undef del_panel 102int del_panel( 103 PANEL *pan) 104 { return(*(int *)0); } 105 106/* ./p_hide.c */ 107 108#undef hide_panel 109int hide_panel( 110 PANEL *pan) 111 { return(*(int *)0); } 112 113/* ./p_hidden.c */ 114 115#undef panel_hidden 116int panel_hidden( 117 const PANEL *pan) 118 { return(*(int *)0); } 119 120/* ./p_move.c */ 121 122#undef move_panel 123int move_panel( 124 PANEL *pan, 125 int starty, 126 int startx) 127 { return(*(int *)0); } 128 129/* ./p_new.c */ 130 131#undef new_panel 132PANEL *new_panel( 133 WINDOW *win) 134 { return(*(PANEL **)0); } 135 136/* ./p_replace.c */ 137 138#undef replace_panel 139int replace_panel( 140 PANEL *pan, 141 WINDOW *win) 142 { return(*(int *)0); } 143 144/* ./p_show.c */ 145 146#undef show_panel 147int show_panel( 148 PANEL *pan) 149 { return(*(int *)0); } 150 151/* ./p_top.c */ 152 153#undef top_panel 154int top_panel( 155 PANEL *pan) 156 { return(*(int *)0); } 157 158/* ./p_update.c */ 159 160#undef update_panels 161void update_panels(void) 162 { /* void */ } 163 164/* ./p_user.c */ 165 166#undef set_panel_userptr 167int set_panel_userptr( 168 PANEL *pan, 169 void *uptr) 170 { return(*(int *)0); } 171 172#undef panel_userptr 173void *panel_userptr( 174 const PANEL *pan) 175 { return(*(void **)0); } 176 177/* ./p_win.c */ 178 179#undef panel_window 180WINDOW *panel_window( 181 const PANEL *pan) 182 { return(*(WINDOW **)0); } 183