cons.saver.h
来自「这是一个开放源代码的与WINNT/WIN2K/WIN2003兼容的操作系统」· C头文件 代码 · 共 31 行
H
31 行
#ifndef __CONS_SAVER_H
#define __CONS_SAVER_H
#ifndef HAVE_X
enum {
CONSOLE_INIT = '1',
CONSOLE_DONE,
CONSOLE_SAVE,
CONSOLE_RESTORE,
CONSOLE_CONTENTS
};
extern signed char console_flag;
void show_console_contents (int starty, unsigned char begin_line, unsigned char end_line);
void handle_console (unsigned char action);
void show_rxvt_contents (int starty, unsigned char y1, unsigned char y2);
int look_for_rxvt_extensions (void);
/* Used only in the principal program */
extern int cons_saver_pid;
#else /* HAVE_X */
# define console_flag 0
# define show_console_contents(w,f,l) { }
# define handle_console(x) { }
#endif
#endif /* __CONS_SAVER_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?