⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 help.h

📁 linux内核
💻 H
字号:
/* -*- c -*- ------------------------------------------------------------- * *    *   Copyright 2004-2005 Murali Krishnan Ganapathy - All Rights Reserved * *   This program is free software; you can redistribute it and/or modify *   it under the terms of the GNU General Public License as published by *   the Free Software Foundation, Inc., 53 Temple Place Ste 330, *   Boston MA 02111-1307, USA; either version 2 of the License, or *   (at your option) any later version; incorporated herein by reference. * * ----------------------------------------------------------------------- */#ifndef __HELP_H_#define __HELP_H_#include "menu.h"#include "com32io.h"#include "tui.h"#include <string.h>// How many rows for the title#define HELP_TITLE_HEIGHT 1#define HELP_BODY_ROW (HELP_TITLE_HEIGHT+3)#define HELP_LEFT_MARGIN 2#define HELPBOX BOX_SINSIN#define HELPDIRLEN  64// Display one screen of help informationvoid showhelp(const char *filename);// Start the help system using id helpidvoid runhelpsystem(unsigned int helpid);// Directory where help files are locatedvoid init_help(const char *helpdir);// Free internal datastructuresvoid close_help(void);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -