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

📄 htmltype.h

📁 一个两碟控制的VCD的代码,两碟之间的转动及连续播放,已大量生产的CODE.
💻 H
字号:
/*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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -