📄 w_clean.c
字号:
/***************************************************************************/
/* */
/* W_CLEAN.C */
/* */
/* Copyright (c) 1991 - Microsoft Corp. */
/* All rights reserved. */
/* Microsoft Confidential */
/* */
/* Function to clear the screen and restore the cursor to normal size and */
/* top left corner position. */
/* */
/* void VideoCleanup( void ) */
/* */
/* ARGUMENTS: NONE */
/* RETURNS: void */
/* */
/* johnhe - 03/15/89 */
/***************************************************************************/
#include <alias.h>
#include <bios_io.h>
void VideoCleanup( void )
{
VideoCls( 7 );
VideoSetRowCol( 0, 0 );
VideoNormalCurs();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -