56bool conGetCursor(_In_ ConStream* con, _Out_ uint16* row, _Out_ uint16* col);
bool conRestoreCursor(ConStream *con)
bool conSetCursor(ConStream *con, uint16 row, uint16 col)
bool conEraseLine(ConStream *con, ConEraseMode mode)
bool conScroll(ConStream *con, int16 lines)
bool conGetCursor(ConStream *con, uint16 *row, uint16 *col)
bool conSaveCursor(ConStream *con)
bool conAltScreen(ConStream *con, bool enable)
bool conMoveCursor(ConStream *con, int16 drow, int16 dcol)
ConEraseMode
Which portion of a line or screen to erase, relative to the current cursor position.
bool conEraseScreen(ConStream *con, ConEraseMode mode)
bool conShowCursor(ConStream *con, bool show)
@ CON_EraseAll
The entire line/screen.
@ CON_EraseToEnd
From the cursor to the end of the line/screen.
@ CON_EraseToStart
From the start of the line/screen to the cursor.