htmltype.h

来自「一个两碟控制的VCD的代码,两碟之间的转动及连续播放,已大量生产的CODE.」· C头文件 代码 · 共 46 行

H
46
字号
/*SCCSID @(#)htmltype.h	1.5 12/10/97 */ 
#ifndef HTMLTYPE_INCLUDE_H
#define HTMLTYPE_INCLUDE_H

#define HISTORY_SIZE 30
#define BOOKMARK_SIZE 10
#define BOOKMARK_TITLE_SIZE 32

typedef struct {
    int begTime;
    char *page_buffer;                /* pointer to the page buffer */
    char *overlay_buffer;
    struct { int fX, fY; } cursor;
} HTMLResource;

typedef struct {
    int ntot;
    int indx;
    unsigned long url_loc[HISTORY_SIZE];
    int link[HISTORY_SIZE];
} HTMLHistory;

typedef struct {
    int ntot;
    int indx;
    unsigned long url_loc[BOOKMARK_SIZE];
    char title[BOOKMARK_SIZE][BOOKMARK_TITLE_SIZE];
} HTMLBookmark;

typedef struct {
	int white;
	int black;
	int red;
	int error;
} HTMLColors;

#define HTML_MAX_YBM 4
typedef struct {
    int nimgs;
    int loc[HTML_MAX_YBM];
    int sz[HTML_MAX_YBM];
} HTML_YBM_info;

#endif

⌨️ 快捷键说明

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