Sophie

Sophie

distrib > Mandriva > 2007.1 > i586 > by-pkgid > af849b1d14a9f8e4273da4024e74b89a > files > 318

libncurses5-devel-5.5-1.20051029.4mdv2007.1.i586.rpm

/*
 * $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 <test.priv.h>

#if USE_LIBPANEL

#include <panel.h>

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