1form_cursor(3X) form_cursor(3X)
2
3
4
6 pos_form_cursor - position a form window cursor
7
9 #include <form.h>
10
11 int pos_form_cursor(FORM *form);
12
14 The function pos_form_cursor restores the cursor to the position re‐
15 quired for the forms driver to continue processing requests. This is
16 useful after curses routines have been called to do screen-painting in
17 response to a form operation.
18
20 This routine returns one of the following:
21
22 E_OK The routine succeeded.
23
24 E_BAD_ARGUMENT
25 Routine detected an incorrect or out-of-range argument.
26
27 E_NOT_POSTED
28 The form has not been posted.
29
30 E_SYSTEM_ERROR
31 System error occurred (see errno(3)).
32
34 curses(3X), form(3X).
35
37 The header file <form.h> automatically includes the header file
38 <curses.h>.
39
41 These routines emulate the System V forms library. They were not sup‐
42 ported on Version 7 or BSD versions.
43
45 Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S.
46 Raymond.
47
48
49
50 form_cursor(3X)