1form_cursor(3CURSES) Curses Library Functions form_cursor(3CURSES)
2
3
4
6 form_cursor, pos_form_cursor - position forms window cursor
7
9 cc [ flag... ] file... -lform -lcurses [ library... ]
10 #include <form.h>
11
12 int pos_form_cursor(FORM *form);
13
14
16 pos_form_cursor() moves the form window cursor to the location required
17 by the form driver to resume form processing. This may be needed after
18 the application calls a curses library I/O routine.
19
21 pos_form_cursor() returns one of the following:
22
23 E_OK Thefunction returned successfully.
24
25
26 E_SYSTEM_ERROR System error.
27
28
29 E_BAD_ARGUMENT An argument is incorrect.
30
31
32 E_NOT_POSTED The form is not posted.
33
34
36 See attributes(5) for descriptions of the following attributes:
37
38
39
40
41 ┌─────────────────────────────┬─────────────────────────────┐
42 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
43 ├─────────────────────────────┼─────────────────────────────┤
44 │MT-Level │Unsafe │
45 └─────────────────────────────┴─────────────────────────────┘
46
48 curses(3CURSES), forms(3CURSES), attributes(5)
49
51 The header <form.h> automatically includes the headers <eti.h> and
52 <curses.h>.
53
54
55
56SunOS 5.11 31 Dec 1996 form_cursor(3CURSES)