winfo.c
来自「详细介绍了一篇关于pci开发的接口芯片」· C语言 代码 · 共 25 行
C
25 行
/* CXL - Copyright (c) 1987-1989 by Mike Smedley - All Rights Reserved */
/* WINFO.C - contains the window information record */
#include "cxldef.h"
#include "cxlwin.h"
struct _winfo_t _Near _Cdecl _winfo=
{
NULL, /* pointer to active window */
NULL, /* pointer to last hidden window */
NULL, /* pointer to head menu record */
NULL, /* pointer to current menu record */
NULL, /* pointer to help info record */
0, /* last handle given to a window */
500, /* max files allowed in wpickfile() */
0, /* pointer to current help category */
W_NOERROR, /* error num from last window func */
0, /* total number of open windows */
0,0, /* system variables used in menus */
ON, /* check for Esc in input funcions? */
8, /* window TTY output tab width */
' ' /* character to fill windows with */
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?