blob: 4d6688e5e13ec312a1424fbedad8660d178c7af8 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +01002 * Copyright (c) 2002-2010,2015 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05303 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
28
29/****************************************************************************
Steve Kondikae271bc2015-11-15 02:50:53 +010030 * Author: Thomas E. Dickey 2002-on *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053031 ****************************************************************************/
32/* LINTLIBRARY */
33
34/* ./panel.c */
35
Steve Kondikae271bc2015-11-15 02:50:53 +010036#include <panel.priv.h>
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053037
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
Steve Kondikae271bc2015-11-15 02:50:53 +010080#undef ground_panel
81PANEL *ground_panel(
82 SCREEN *sp)
83 { return(*(PANEL **)0); }
84
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053085#undef panel_above
86PANEL *panel_above(
87 const PANEL *pan)
88 { return(*(PANEL **)0); }
89
90/* ./p_below.c */
91
Steve Kondikae271bc2015-11-15 02:50:53 +010092#undef ceiling_panel
93PANEL *ceiling_panel(
94 SCREEN *sp)
95 { return(*(PANEL **)0); }
96
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053097#undef panel_below
98PANEL *panel_below(
99 const PANEL *pan)
100 { return(*(PANEL **)0); }
101
102/* ./p_bottom.c */
103
104#undef bottom_panel
105int bottom_panel(
106 PANEL *pan)
107 { return(*(int *)0); }
108
109/* ./p_delete.c */
110
111#undef del_panel
112int del_panel(
113 PANEL *pan)
114 { return(*(int *)0); }
115
116/* ./p_hide.c */
117
118#undef hide_panel
119int hide_panel(
120 PANEL *pan)
121 { return(*(int *)0); }
122
123/* ./p_hidden.c */
124
125#undef panel_hidden
126int panel_hidden(
127 const PANEL *pan)
128 { return(*(int *)0); }
129
130/* ./p_move.c */
131
132#undef move_panel
133int move_panel(
134 PANEL *pan,
135 int starty,
136 int startx)
137 { return(*(int *)0); }
138
139/* ./p_new.c */
140
141#undef new_panel
142PANEL *new_panel(
143 WINDOW *win)
144 { return(*(PANEL **)0); }
145
146/* ./p_replace.c */
147
148#undef replace_panel
149int replace_panel(
150 PANEL *pan,
151 WINDOW *win)
152 { return(*(int *)0); }
153
154/* ./p_show.c */
155
156#undef show_panel
157int show_panel(
158 PANEL *pan)
159 { return(*(int *)0); }
160
161/* ./p_top.c */
162
163#undef top_panel
164int top_panel(
165 PANEL *pan)
166 { return(*(int *)0); }
167
168/* ./p_update.c */
169
Steve Kondikae271bc2015-11-15 02:50:53 +0100170#undef update_panels_sp
171void update_panels_sp(
172 SCREEN *sp)
173 { /* void */ }
174
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530175#undef update_panels
176void update_panels(void)
177 { /* void */ }
178
179/* ./p_user.c */
180
181#undef set_panel_userptr
182int set_panel_userptr(
183 PANEL *pan,
Steve Kondikae271bc2015-11-15 02:50:53 +0100184 const void *uptr)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530185 { return(*(int *)0); }
186
187#undef panel_userptr
Steve Kondikae271bc2015-11-15 02:50:53 +0100188const void *panel_userptr(
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530189 const PANEL *pan)
Steve Kondikae271bc2015-11-15 02:50:53 +0100190 { return(*(const void **)0); }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530191
192/* ./p_win.c */
193
194#undef panel_window
195WINDOW *panel_window(
196 const PANEL *pan)
197 { return(*(WINDOW **)0); }