コード例 #1
0
ファイル: display.cpp プロジェクト: 340211173/hf-2011
//
// clear from start of line
//
VOID TextClearFromStartOfLine()
{
	if(DbcsLangId)
		TextGrClearFromStartOfLine();
	else
		TextTmClearFromStartOfLine();
}
コード例 #2
0
ファイル: display.c プロジェクト: BillTheBest/WinNT4
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();
    }
}