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

📄 lib_4.0_3.fix

📁 www工具包
💻 FIX
字号:
#include "WWWUtil.h"#include "HText.h"#define PROXY(type,name,args,shortargs) \type (*APP_ ## name) args; \type name args { return APP_ ## name shortargs; }#define PROXYVOID(name,args,shortargs) \void (*APP_ ## name) args; \void name args { APP_ ## name shortargs; }PROXY(HText *,  HText_new2,      (HTRequest *            request,				  HTParentAnchor *       anchor,				  HTStream *             output_stream),      (request, anchor, output_stream))PROXYVOID(HText_beginAppend, (HText * text),	  (text))PROXYVOID(HText_endAppend, (HText * text),	  (text))PROXYVOID(HText_setStyle, (HText * text, HTStyle * style),	  (text, style))PROXYVOID(HText_appendCharacter, (HText * text, char ch),	  (text, ch))PROXYVOID(HText_appendText, (HText * text, CONST char * str),	  (text, str))PROXYVOID(HText_appendParagraph, (HText * text),	  (text))PROXYVOID(HText_beginAnchor, (HText * text, HTChildAnchor * anc),	  (text, anc))PROXYVOID(HText_endAnchor, (HText * text),	  (text))PROXYVOID(HText_appendImage, (        HText *         text,        HTChildAnchor * anc,        CONST char *    alternative_text,        CONST char *    alignment,        BOOL            isMap),	  (text, anc, alternative_text, alignment, isMap))HTStyleSheet * styleSheet;

⌨️ 快捷键说明

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