Curses Library Functions formpost(3CURSES)
NAME
formpost, postform, unpostform - write or erase forms
from associated subwindows
SYNOPSIS
cc [ flag... ] file... -lform -lcurses [ library... ]
#include
int postform(FORM *form);
int unpostform(FORM *form);
DESCRIPTION
postform() writes form into its associated subwindow. The
application programmer must use curses library routines to
display the form on the physical screen or call
updatepanels() if the panels library is being used.
unpostform() erases form from its associated subwindow.
RETURN VALUES
These routines return one of the following:
EOK The function returned successfully.
ESYSTEMEROR System error.
EBADARGUMENT An argument is incorrect.
EPOSTED The form is posted.
ENOTPOSTED The form is not posted.
ENOROM The form does not fit in the subwindow.
EBADSTATE The routine was called from
an initialization or termination
function.
SunOS 5.11 Last change: 31 Dec 1996 1
Curses Library Functions formpost(3CURSES)
ENOTCONECTED The field is not connected to a form.
ATRIBUTES
See attributes(5) for descriptions of the following attri-
butes:
ATRIBUTE TYPE ATRIBUTE VALUE
MT-Level Unsafe
SEE ALSO
curses(3CURSES), forms(3CURSES), panelupdate(3CURSES),
panels(3CURSES), attributes(5)
NOTES
The header automatically includes the headers
and .
SunOS 5.11 Last change: 31 Dec 1996 2
|