Returns the start and end scan line for the cursor
#include <nwconio.h>
WORD GetCursorShape (
BYTE *startline,
BYTE *endline);
(OUT) Points to the first cursor scan line.
(OUT) Points to the last cursor scan line.
This function returns the scan line for the cursor.
The GetCursorSize function returns the cursor shape as specified by the startline and endline parameters.
#include <nwconio.h> WORD scanline; BYTE startline; BYTE endline; scanline = GetCursorShape (&startline, & endline);