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

📄 web.h

📁 飞漫公司的minigui的1.6.8收费增值版本的demon等示例程序
💻 H
字号:
#ifndef __WEB_H__#define __WEB_H__#include <glib.h>#include "dw_widget.h"#include "cache.h"#include "html.h"#include "image.h"     /* for DilloImage */#ifdef __cplusplusextern "C" {#endif /* __cplusplus *//* * Flag defines */#define WEB_RootUrl  1#define WEB_Image    2#define WEB_Download 4   /* Half implemented... */typedef struct _DilloWeb DilloWeb;struct _DilloWeb {  DilloUrl *url;              /* Requested URL */  BrowserWindow *bw;          /* The requesting browser window [reference] */  gint flags;                 /* Additional info */  DilloImage *Image;          /* For image urls [reference] */  DwWidget* page;  FILE *stream;               /* File stream for local saving */  gint SavedBytes;            /* Also for local saving */};DilloWeb* a_Web_new (const DilloUrl* url);gint a_Web_valid (DilloWeb *web);void a_Web_free (DilloWeb*);DwWidget* a_Web_dispatch_by_type (const char *Type, DilloWeb *web,                                  CA_Callback_t *Call, void **Data);#ifdef __cplusplus}#endif /* __cplusplus */#endif /* __WEB_H__ */

⌨️ 快捷键说明

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