Returns the cursor size
#include <nwconio.h>
WORD GetCursorSize (
BYTE *firstline,
BYTE *lastline);
(OUT) Receives the first cursor scan line.
(OUT) Receives the last cursor scan line.
This function returns the cursor size.
The GetCursorSize function returns the maximum ( lastline) and minimum ( firstline) values that the cursor scan lines can be set to.
#include <nwconio.h> WORD scanline; BYTE firstline; BYTE lastline; scanline = GetCursorSize (&firstline, & lastline);