Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
new_panel, panel_window, replace_panel, del_panel — panel routinesLIBRARY
library “libpanel”SYNOPSIS
#include <panel.h>new_panel(WINDOW *win);
panel_window(PANEL *p);
replace_panel(PANEL *p, WINDOW *win);
del_panel(PANEL *p);
DESCRIPTION
The function new_panel() creates a new panel associated with the curses window win. The new panel is visible and is placed at the top of the deck.RETURN VALUES
Functions returning pointers will return NULL if an error is detected. The functions that return an int will return one of the following values:- OK
- The function completed successfully.
- ERR
- An error occurred in the function.