/* * $Id: demo_panels.c,v 1.1 2003/04/26 22:11:23 tom Exp $ * * Demonstrate a variety of functions from the panel library. * Thomas Dickey - 2003/4/26 */ /* panel_above - panel_below - panel_hidden - replace_panel - */ #include #if USE_LIBPANEL #include int main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED) { printf("Not implemented - demo for panel library\n"); return EXIT_SUCCESS; } #else int main(void) { printf("This program requires the curses panel library\n"); ExitProgram(EXIT_FAILURE); } #endif