📄 w_cls.c
字号:
/***************************************************************************/
/* */
/* W_CLS.C */
/* */
/* Copyright (c) 1991 - Microsoft Corp. */
/* All rights reserved. */
/* Microsoft Confidential */
/* */
/* Function to clear the work area of the screen. The work are is defined */
/* as the area below the screen header and above the help prompt at the */
/* bottom of the screen. */
/* */
/* void WorkAreaCls( void ) */
/* */
/* ARGUMENTS: NONE */
/* RETURNS: void */
/* */
/* johnhe - 03/15/89 */
/***************************************************************************/
#include <alias.h>
#include <window.h>
#include <bios_io.h>
void WorkAreaCls( void )
{
extern unsigned char ScreenWidth;
VideoScrollDn( TITLE_ROW, 0, 23, VideoGetWidth() - 1,
0, GetBackGroundColor() );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -