Пример #1
0
//
// clear to end of display
//
VOID TextClearToEndOfDisplay()
{
	if(DbcsLangId)
		TextGrClearToEndOfDisplay();
	else
		TextTmClearToEndOfDisplay();
}
Пример #2
0
VOID
TextClearToEndOfDisplay(
    VOID
    )

/*++

Routine Description:

    Clears from the current cursor position to the end of the video
    display by writing blanks with the current video attribute.
    The cursor position is not changed.

Arguments:

    None

Returns:

    Nothing

--*/

{
    if(DbcsLangId) {
        TextGrClearToEndOfDisplay();
    } else {
        TextTmClearToEndOfDisplay();
    }
}