Sets the position of the input cursor on the current screen
#include <nwconio.h>
int SetPositionOfInputCursor (
WORD row,
WORD column);
(IN) Specifies the row number on which to position the cursor (top row is 0).
(IN) Specifies the column number on which to position the cursor (leftmost column is 0).
The following table lists return values and descriptions.
The application must check that the row and column positions are within the current screen size.
The SetPositionOfInputCursor function positions the input cursor on the current screen. It also positions the output cursor if cursor coupling for the current screen is enabled. If another thread is waiting on the keyboard, the calling thread is blocked until the keyboard is free.