VOID TextClearDisplay( VOID ) /*++ Routine Description: Clears the video display and positions the cursor at the upper left corner of the screen (0,0). Arguments: None Returns: Nothing --*/ { if(DbcsLangId) { TextGrClearDisplay(); } else { TextTmClearDisplay(); } TextSetCursorPosition(0,0); }
// // clear display // VOID TextClearDisplay() { if(DbcsLangId) TextGrClearDisplay(); else TextTmClearDisplay(); TextSetCursorPosition(0,0); }