helpbox.h

来自「edit 0.82 freedos中的文本编辑器」· C头文件 代码 · 共 25 行

H
25
字号
/* --------- 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 + -
显示快捷键?