Files
Arquivotheca.SunOS-4.1.4/usr.etc/suninstall/libmenu/on_shared.c
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

32 lines
554 B
C

#ifndef lint
static char sccsid[] = "@(#)on_shared.c 1.1 94/10/31";
#endif
/*
* Name: on_shared.c
*
* Description: Turn on (activate) a shared yes/no question.
*
* Call syntax: on_form_shared(form_p, shared_p);
*
* Parameters: form * form_p;
* form_yesno * shared_p;
*/
#include <curses.h>
#include "menu.h"
void
on_form_shared(form_p, shared_p)
form * form_p;
form_yesno * shared_p;
{
if (form_p->f_shared)
clear_form_yesno(form_p->f_shared);
form_p->f_shared = shared_p;
on_form_yesno(shared_p);
} /* end on_form_shared() */