Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include
File: panel.h
/****************************************************************************
[0] Fix | Delete
* Copyright (c) 1998-2009,2017 Free Software Foundation, Inc. *
[1] Fix | Delete
* *
[2] Fix | Delete
* Permission is hereby granted, free of charge, to any person obtaining a *
[3] Fix | Delete
* copy of this software and associated documentation files (the *
[4] Fix | Delete
* "Software"), to deal in the Software without restriction, including *
[5] Fix | Delete
* without limitation the rights to use, copy, modify, merge, publish, *
[6] Fix | Delete
* distribute, distribute with modifications, sublicense, and/or sell *
[7] Fix | Delete
* copies of the Software, and to permit persons to whom the Software is *
[8] Fix | Delete
* furnished to do so, subject to the following conditions: *
[9] Fix | Delete
* *
[10] Fix | Delete
* The above copyright notice and this permission notice shall be included *
[11] Fix | Delete
* in all copies or substantial portions of the Software. *
[12] Fix | Delete
* *
[13] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
[14] Fix | Delete
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
[15] Fix | Delete
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
[16] Fix | Delete
* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
[17] Fix | Delete
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
[18] Fix | Delete
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
[19] Fix | Delete
* THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
[20] Fix | Delete
* *
[21] Fix | Delete
* Except as contained in this notice, the name(s) of the above copyright *
[22] Fix | Delete
* holders shall not be used in advertising or otherwise to promote the *
[23] Fix | Delete
* sale, use or other dealings in this Software without prior written *
[24] Fix | Delete
* authorization. *
[25] Fix | Delete
****************************************************************************/
[26] Fix | Delete
[27] Fix | Delete
/****************************************************************************
[28] Fix | Delete
* Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1995 *
[29] Fix | Delete
* and: Eric S. Raymond <esr@snark.thyrsus.com> *
[30] Fix | Delete
* and: Juergen Pfeifer 1996-1999,2008 *
[31] Fix | Delete
****************************************************************************/
[32] Fix | Delete
[33] Fix | Delete
/* $Id: panel.h,v 1.12 2017/02/11 16:50:28 tom Exp $ */
[34] Fix | Delete
[35] Fix | Delete
/* panel.h -- interface file for panels library */
[36] Fix | Delete
[37] Fix | Delete
#ifndef NCURSES_PANEL_H_incl
[38] Fix | Delete
#define NCURSES_PANEL_H_incl 1
[39] Fix | Delete
[40] Fix | Delete
#include <curses.h>
[41] Fix | Delete
[42] Fix | Delete
typedef struct panel
[43] Fix | Delete
#if !NCURSES_OPAQUE_PANEL
[44] Fix | Delete
{
[45] Fix | Delete
WINDOW *win;
[46] Fix | Delete
struct panel *below;
[47] Fix | Delete
struct panel *above;
[48] Fix | Delete
NCURSES_CONST void *user;
[49] Fix | Delete
}
[50] Fix | Delete
#endif /* !NCURSES_OPAQUE_PANEL */
[51] Fix | Delete
PANEL;
[52] Fix | Delete
[53] Fix | Delete
#if defined(__cplusplus)
[54] Fix | Delete
extern "C" {
[55] Fix | Delete
#endif
[56] Fix | Delete
[57] Fix | Delete
extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
[58] Fix | Delete
extern NCURSES_EXPORT(void) update_panels (void);
[59] Fix | Delete
extern NCURSES_EXPORT(int) hide_panel (PANEL *);
[60] Fix | Delete
extern NCURSES_EXPORT(int) show_panel (PANEL *);
[61] Fix | Delete
extern NCURSES_EXPORT(int) del_panel (PANEL *);
[62] Fix | Delete
extern NCURSES_EXPORT(int) top_panel (PANEL *);
[63] Fix | Delete
extern NCURSES_EXPORT(int) bottom_panel (PANEL *);
[64] Fix | Delete
extern NCURSES_EXPORT(PANEL*) new_panel (WINDOW *);
[65] Fix | Delete
extern NCURSES_EXPORT(PANEL*) panel_above (const PANEL *);
[66] Fix | Delete
extern NCURSES_EXPORT(PANEL*) panel_below (const PANEL *);
[67] Fix | Delete
extern NCURSES_EXPORT(int) set_panel_userptr (PANEL *, NCURSES_CONST void *);
[68] Fix | Delete
extern NCURSES_EXPORT(NCURSES_CONST void*) panel_userptr (const PANEL *);
[69] Fix | Delete
extern NCURSES_EXPORT(int) move_panel (PANEL *, int, int);
[70] Fix | Delete
extern NCURSES_EXPORT(int) replace_panel (PANEL *,WINDOW *);
[71] Fix | Delete
extern NCURSES_EXPORT(int) panel_hidden (const PANEL *);
[72] Fix | Delete
[73] Fix | Delete
#if NCURSES_SP_FUNCS
[74] Fix | Delete
extern NCURSES_EXPORT(PANEL *) ground_panel(SCREEN *);
[75] Fix | Delete
extern NCURSES_EXPORT(PANEL *) ceiling_panel(SCREEN *);
[76] Fix | Delete
[77] Fix | Delete
extern NCURSES_EXPORT(void) NCURSES_SP_NAME(update_panels) (SCREEN*);
[78] Fix | Delete
#endif
[79] Fix | Delete
[80] Fix | Delete
#if defined(__cplusplus)
[81] Fix | Delete
}
[82] Fix | Delete
#endif
[83] Fix | Delete
[84] Fix | Delete
#endif /* NCURSES_PANEL_H_incl */
[85] Fix | Delete
[86] Fix | Delete
/* end of panel.h */
[87] Fix | Delete
[88] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function