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

📄 html_pub.h

📁 一个两碟控制的VCD的代码,两碟之间的转动及连续播放,已大量生产的CODE.
💻 H
字号:
/*SCCSID @(#)html_pub.h	1.7 7/23/98 */
#ifndef HTML_PUB_INCLUDE_H
#define HTML_PUB_INCLUDE_H

#define ANCHOR_SIZE 32
#define MAPAREA_SIZE 32

extern char * ROOT_DIR ;

typedef struct HTMLPageControl 
{
    int bg_color;                     /* background color index */
    int pal_size;		      /* palette size */
    int num_anchor;                   /* total number of anchors on this page */
    void *anchors[ANCHOR_SIZE];  /* array of anchors on this page */
    int num_maparea;
    void *mapareas[MAPAREA_SIZE];
    int curr_anchor;                  /* index of current highlighted anchor */
    void *title;
    unsigned int flag_sound;
    int flag_refresh;
    void *refresh;
    void *sound;
    void *script;
    void *overlay_sound;
} HTMLPageControl;

/* record found file information */
typedef struct {
  unsigned int loc;   /* logical address, not MMSSFF */
  unsigned int sz;    /* size in bytes */
} FileHandler;

void vcd30_status(int k);
void vcd30_eject();
void vcd30_poweroff();
void VirtualPlayer();
void save_html();
int restore_html();

int init_CDloader();
int getInfraCode();

void html_sound();
void html_timeout();

void au_init();
int au_begin(char *filename, int loop);
int au_doit();
void au_end();
void process_volume(void);

void init_html();
void init_cdfs();

void disp_url();
void set_highlight(int i, int shape);
void move_cursor(int mode);
int html_refresh();
int get_URL();

void push_hist(FileHandler ff);
void pop_hist();
void get_hist(FileHandler *ff);
void add_bookmark();
void show_bookmark();
int del_bookmark(void);
int list_bookmark();
int play_bookmark(int i);

#endif

⌨️ 快捷键说明

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