|
|
This function is the opposite of function hide_panel. It returns the hidden panel referenced in its argument to the top of the panel deck.
SYNOPSIS
int show_panel (panel) PANEL panel; /* Panel to return to top of deck */Note that the panel must have been hidden by a previous hide_panel call. The function returns
OK
if the operation
is successful, and
ERR
if the panel pointer is
NULL,
if there is insufficient memory, or if the panel is not hidden.
To return, say, panel2 to the deck, you write
PANEL *panel2;show_panel(panel2);