?? html.h
字號(hào):
/* W3C Sample Code Library libwww HTML Parser With Text Object Converter! Simple HTML Parser With Text Object Converter!*//*** (c) COPYRIGHT MIT 1995.** Please first read the full copyright statement in the file COPYRIGH.*//*This interprets the HTMLsemantics passed to it by the SGML parser. It thencreates a HText object which the application canuse to render an HTML object as text comes in over the wire. Thestylesheet manager can be used to ensure thatthe rendering is done according to whatever style information is present.This module is implemented by HTML.c, and it is a partof the W3C Sample Code Library.*/#ifndef HTML_H#define HTML_H#include "HTFormat.h"#include "HTMLPDTD.h"/*. Converters.These are the converters implemented in this module. The first converts fromHTML to presentation or plain text.*/extern HTConverter HTMLToPlain;/*The next converts from HTML to a simple C like representation. It puts everythingnot in PRE within C style comments. This is the way that the line mode browseris used to convert the libwww HTML files to C style .h files*/extern HTConverter HTMLToC;/*This one converts the HTML stream to a rendered object using theHText interface.*/extern HTConverter HTMLPresent;/*. Selecting Internal Character Set Representation.Only ISO_LATIN1 is currently supported.*/typedef enum _HTMLCharacterSet { HTML_ISO_LATIN1, HTML_NEXT_CHARS, HTML_PC_CP950} HTMLCharacterSet;extern BOOL HTMLUseCharacterSet (HTMLCharacterSet charset);/**/#endif /* end HTML_H *//* @(#) $Id: HTML.html,v 2.36 1999/01/06 15:38:47 frystyk Exp $*/
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -