llib-lpanel revision 62449
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
39/* ./p_above.c */
40
41#undef panel_above
42PANEL	*panel_above(
43		const PANEL *pan)
44		{ return(*(PANEL **)0); }
45
46/* ./p_below.c */
47
48#undef panel_below
49PANEL	*panel_below(
50		const PANEL *pan)
51		{ return(*(PANEL **)0); }
52
53/* ./p_bottom.c */
54
55#undef bottom_panel
56int	bottom_panel(
57		PANEL	*pan)
58		{ return(*(int *)0); }
59
60/* ./p_delete.c */
61
62#undef del_panel
63int	del_panel(
64		PANEL	*pan)
65		{ return(*(int *)0); }
66
67/* ./p_hide.c */
68
69#undef hide_panel
70int	hide_panel(
71		 PANEL	*pan)
72		{ return(*(int *)0); }
73
74/* ./p_hidden.c */
75
76#undef panel_hidden
77int	panel_hidden(
78		const PANEL *pan)
79		{ return(*(int *)0); }
80
81/* ./p_move.c */
82
83#undef move_panel
84int	move_panel(
85		PANEL	*pan, 
86		int	starty, 
87		int	startx)
88		{ return(*(int *)0); }
89
90/* ./p_new.c */
91
92#undef new_panel
93PANEL	*new_panel(
94		WINDOW	*win)
95		{ return(*(PANEL **)0); }
96
97/* ./p_replace.c */
98
99#undef replace_panel
100int	replace_panel(
101		PANEL	*pan, 
102		WINDOW	*win)
103		{ return(*(int *)0); }
104
105/* ./p_show.c */
106
107#undef show_panel
108int	show_panel(
109		PANEL	*pan)
110		{ return(*(int *)0); }
111
112/* ./p_top.c */
113
114#undef top_panel
115int	top_panel(
116		PANEL	*pan)
117		{ return(*(int *)0); }
118
119/* ./p_update.c */
120
121#undef update_panels
122void	update_panels(void)
123		{ /* void */ }
124
125/* ./p_user.c */
126
127#undef set_panel_userptr
128int	set_panel_userptr(
129		PANEL	*pan, 
130		void	*uptr)
131		{ return(*(int *)0); }
132
133#undef panel_userptr
134void	*panel_userptr(
135		const PANEL *pan)
136		{ return(*(void **)0); }
137
138/* ./p_win.c */
139
140#undef panel_window
141WINDOW	*panel_window(
142		const PANEL *pan)
143		{ return(*(WINDOW **)0); }
144