Пример #1
0
//
// clear to end of line
//
VOID TextClearToEndOfLine()
{
	if(DbcsLangId)
		TextGrClearToEndOfLine();
	else
		TextTmClearToEndOfLine();
}
Пример #2
0
VOID
TextClearToEndOfLine(
    VOID
    )

/*++

Routine Description:

    Clears from the current cursor position to the end of the line
    by writing blanks with the current video attribute.

Arguments:

    None

Returns:

    Nothing


--*/

{
    if(DbcsLangId) {
        TextGrClearToEndOfLine();
    } else {
        TextTmClearToEndOfLine();
    }
}