mvcur

Moves the terminal's cursor from (lasty,lastx) to (newy,newx).

Format

#include  <curses.h>

int mvcur  (int lasty, int lastx, int
           newy, int newx);

Arguments

lasty
The cursor position.
lastx
The cursor position.
newy
The resulting cursor position.
newx
The resulting cursor position.

Description

In DEC C for OpenVMS Systems, mvcur and move perform the same function.

See also move in this section.

Return Values
OK  Indicates success. 
ERR  Indicates that moving the window put part or all of the window off the edge of the terminal screen. The terminal screen remains unaltered. 


Previous Page | Next Page | Table of Contents | Index