 |
» |
|
|
|
The getyx set of routines is used to get positional information for a window. Syntax |  |
#include <curses.h>
void getyx(WINDOW *win, int y, int x);
void getparyx(WINDOW *win, int y, int x);
void getbegyx(WINDOW *win, int y, int x);
void getmaxyx(WINDOW *win, int y, int x);
|
Parameters |  |
- win
A pointer to the window from which to get positional information.
- x
The integer in which to place x coordinate position of cursor.
- y
The integer in which to place y coordinate position of cursor.
Return Values |  |
None Implementation Considerations |  |
The getyx() routine is identical to XPG/3.
The getparyx(), getbegyx(), and getmaxyx() routines
are UNIX System V implementations. Portability |  |
The getyx() routine conforms to HP-UX, UNIX System V, and XPG/3. The getparyx(), getbegyx(), and getmaxyx() routines conform to UNIX System V.
|