Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/./panel.h
Real path: /usr/include/panel.h
Zurück
/* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ /* * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. */ #ifndef _PANEL_H #define _PANEL_H #include <curses.h> #ifdef __cplusplus extern "C" { #endif typedef struct _obscured_list { struct PANEL *panel_p; int start, end; struct _obscured_list *next; } _obscured_list; typedef struct PANEL { WINDOW *win; int wstarty; int wendy; int wstartx; int wendx; struct _obscured_list *obscured; struct PANEL *below, *above; char *user; } PANEL; extern PANEL *new_panel(WINDOW *); extern int del_panel(PANEL *); extern int hide_panel(PANEL *); extern int show_panel(PANEL *); extern int panel_hidden(PANEL *); extern int move_panel(PANEL *, int, int); extern int replace_panel(PANEL *, WINDOW *); extern int top_panel(PANEL *); extern int bottom_panel(PANEL *); extern void update_panels(void); extern WINDOW *panel_window(PANEL *); extern int set_panel_userptr(PANEL *, char *); extern char *panel_userptr(PANEL *); extern PANEL *panel_above(PANEL *); extern PANEL *panel_below(PANEL *); #ifdef __cplusplus } #endif #endif /* _PANEL_H */