Go to the first, previous, next, last section, table of contents.


ScreenSetCursor

Syntax

#include <pc.h>

void  ScreenSetCursor(int  row, int  column);

Description

This function moves the cursor position on the default video page to the point given by (zero-based) row and column, by calling function 2 of interrupt 10h.

Return Value

None.

Portability

not ANSI, not POSIX

Example

ScreenSetCursor(0, 0);   /* home the cursor */


Go to the first, previous, next, last section, table of contents.