示例#1
0
//
// clear from start of line
//
VOID TextClearFromStartOfLine()
{
	if(DbcsLangId)
		TextGrClearFromStartOfLine();
	else
		TextTmClearFromStartOfLine();
}
示例#2
0
VOID
TextClearFromStartOfLine(
    VOID
    )

/*++

Routine Description:

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

Arguments:

    None

Returns:

    Nothing

--*/

{
    if(DbcsLangId) {
        TextGrClearFromStartOfLine();
    } else {
        TextTmClearFromStartOfLine();
    }
}