Exemplo n.º 1
0
// UnPost the form, removing it from the interface
func (f *Form) UnPost() error {
	err := C.unpost_form(f.form)
	return ncursesError(syscall.Errno(err))
}
Exemplo n.º 2
0
func (form *Form) Unpost() bool {
	return isOk(C.unpost_form((*C.FORM)(form)))
}
Exemplo n.º 3
0
func (f *Form) Unpost() error {
	return geterror(C.unpost_form(f.form))
}