]> ncurses.scripts.mit.edu Git - ncurses.git/blob - panel/llib-lpanel
ncurses 4.1
[ncurses.git] / panel / llib-lpanel
1 /******************************************************************************
2  * Copyright 1996 by Thomas E. Dickey <dickey@clark.net>                      *
3  * All Rights Reserved.                                                       *
4  *                                                                            *
5  * Permission to use, copy, modify, and distribute this software and its      *
6  * documentation for any purpose and without fee is hereby granted, provided  *
7  * that the above copyright notice appear in all copies and that both that    *
8  * copyright notice and this permission notice appear in supporting           *
9  * documentation, and that the name of the above listed copyright holder(s)   *
10  * not be used in advertising or publicity pertaining to distribution of the  *
11  * software without specific, written prior permission. THE ABOVE LISTED      *
12  * COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,  *
13  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO     *
14  * EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY         *
15  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER       *
16  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF       *
17  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN        *
18  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.                   *
19  ******************************************************************************/
20 /* LINTLIBRARY */
21
22 /* ./panel.c */
23
24 #include "panel.priv.h"
25
26 #undef panel_window
27 WINDOW  *panel_window(
28                 const PANEL *pan)
29                 { return(*(WINDOW **)0); }
30
31 #undef update_panels
32 void    update_panels(void)
33                 { /* void */ }
34
35 #undef hide_panel
36 int     hide_panel(
37                  PANEL  *pan)
38                 { return(*(int *)0); }
39
40 #undef show_panel
41 int     show_panel(
42                  PANEL  *pan)
43                 { return(*(int *)0); }
44
45 #undef top_panel
46 int     top_panel(
47                  PANEL  *pan)
48                 { return(*(int *)0); }
49
50 #undef del_panel
51 int     del_panel(
52                  PANEL  *pan)
53                 { return(*(int *)0); }
54
55 #undef bottom_panel
56 int     bottom_panel(
57                  PANEL  *pan)
58                 { return(*(int *)0); }
59
60 #undef new_panel
61 PANEL   *new_panel(
62                 WINDOW  *win)
63                 { return(*(PANEL **)0); }
64
65 #undef panel_above
66 PANEL   *panel_above(
67                 const PANEL *pan)
68                 { return(*(PANEL **)0); }
69
70 #undef panel_below
71 PANEL   *panel_below(
72                 const PANEL *pan)
73                 { return(*(PANEL **)0); }
74
75 #undef set_panel_userptr
76 int     set_panel_userptr(
77                 PANEL   *pan, 
78                 const void *uptr)
79                 { return(*(int *)0); }
80
81 #undef panel_userptr
82 const void *panel_userptr(
83                 const PANEL *pan)
84                 { return(*(const void **)0); }
85
86 #undef move_panel
87 int     move_panel(
88                 PANEL   *pan, 
89                 int     starty, 
90                 int     startx)
91                 { return(*(int *)0); }
92
93 #undef replace_panel
94 int     replace_panel(
95                 PANEL   *pan, 
96                 WINDOW  *win)
97                 { return(*(int *)0); }
98
99 #undef panel_hidden
100 int     panel_hidden(
101                 const PANEL *pan)
102                 { return(*(int *)0); }