helpbox.h

来自「DOS下Editor的源代码」· C头文件 代码 · 共 26 行

H
26
字号
/* --------- helpbox.h ----------- */

#ifndef HELPBOX_H
#define HELPBOX_H

/* --------- linked list of help text collections -------- */
struct helps {
    char *hname;
	char *comment;
    long hptr;
    int bit;
    int hheight;
    int hwidth;
	int nexthlp;
	int prevhlp;
    void *hwnd;
	char *PrevName;
	char *NextName;
#ifdef FIXHELP
	struct helps *NextHelp;
#endif
};

#endif

⌨️ 快捷键说明

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