FORMS(3) BSD Library Functions Manual FORMS(3)NAME
free_form, new_form -- form library
LIBRARY
Curses Form Library (libform, -lform)
SYNOPSIS
#include <form.h>
int
free_form(FORM *form);
FORM *
new_form(FIELD **fields);
DESCRIPTION
The function free_form() frees all the resources associated with the form and destroys the form. Calling new_form() will create a new form,
set the form parameters to the current defaults and attach the passed fields to the form. The array of fields passed to new_form() must be
terminated with a NULL pointer to indicate the end of the fields.
RETURN VALUES
Functions returning pointers will return NULL if an error is detected. The functions that return an int will return one of the following
error values:
E_OK The function was successful.
E_BAD_ARGUMENT The function was passed a bad argument.
E_POSTED The form is posted to the screen.
SEE ALSO curses(3), forms(3)NOTES
The header <form.h> automatically includes both <curses.h> and <eti.h>.
BSD January 1, 2001 BSD
Check Out this Related Man Page
form_new(3CURSES) Curses Library Functions form_new(3CURSES)NAME
form_new, new_form, free_form - create and destroy forms
SYNOPSIS
cc [ flag... ] file... -lform -lcurses [ library... ]
#include <form.h>
FORM *new_form(FIELD **fields);
int free_form(FORM *form);
DESCRIPTION
new_form() creates a new form connected to the designated fields and returns a pointer to the form.
free_form() disconnects the form from its associated field pointer array and deallocates the space for the form.
RETURN VALUES
new_form() always returns NULL on error. free_form() returns one of the following:
E_OK The function returned successfully.
E_BAD_ARGUMENT An argument is incorrect.
E_POSTED The form is posted.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|MT-Level |Unsafe |
+-----------------------------+-----------------------------+
SEE ALSO curses(3CURSES), forms(3CURSES), attributes(5)NOTES
The header <form.h> automatically includes the headers <eti.h> and <curses.h>.
SunOS 5.10 31 Dec 1996 form_new(3CURSES)
Man Page
3 More Discussions You Might Find Interesting
1. Post Here to Contact Site Administrators and Moderators
In regards to this post:
https://www.unix.com/showthread.php?s=&threadid=10372
it may be advisable to inform new members about the repercussions of cross-posting. (9 Replies)
Booting Problem:
Error 25: Disk read error25: Disk read error This error is returned if there is a disk read error when trying to probe or read data from a particular disk.
Does this meant I will have to change my hard drive with a new one or will this be resolved by formatting or wiping out hard... (3 Replies)
hi,
i have created a file system using newfs command in solaris 10, later i got error messages from the database which i am using. May be database using the disk also.
My question is how to remove file system from the disk.
Thanks (7 Replies)