
v i d P u t C u r s o r
Description
Moves the cursor for the specified display page to the specified row and column.
Syntax
void far vidPutCursor(unsigned short usRow,
| unsigned short usCol, |
|
| short sPage); |
|
Parameters |
|
|
usRow | Row. For | |
| printers, values are |
|
usCol | Column. Values are |
|
usPage | Display page. For | |
| For | |
Return Values |
|
|
None |
|
|
Example |
|
|
#include <stdio.h> |
| |
#include "mmsultra.h" |
| |
void main(void) |
| |
{ |
| // Set the page |
vidSetPage(0); | ||
vidScroll(0, 0, 3, 19, 0, 0x07); | // Clear the screen | |
vidPutCursor(0, 0, 0); | // Move the cursor | |
printf("X\n"); |
| // Print an X |
printf("The 'X' is at\ncolumn 0, row 0"); | // Display message | |
} |
|
|