mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-06 13:49:38 +01:00
* removed deprecated include file
git-svn-id: trunk@11536 -
This commit is contained in:
parent
7d845aa47e
commit
62d71b77b5
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -3275,7 +3275,6 @@ packages/libxml/examples/reader2.pas svneol=native#text/plain
|
|||||||
packages/libxml/examples/test1.xml svneol=native#text/plain
|
packages/libxml/examples/test1.xml svneol=native#text/plain
|
||||||
packages/libxml/examples/test2.xml svneol=native#text/plain
|
packages/libxml/examples/test2.xml svneol=native#text/plain
|
||||||
packages/libxml/fpmake.pp svneol=native#text/plain
|
packages/libxml/fpmake.pp svneol=native#text/plain
|
||||||
packages/libxml/src/DOCBparser.inc svneol=native#text/plain
|
|
||||||
packages/libxml/src/HTMLparser.inc svneol=native#text/plain
|
packages/libxml/src/HTMLparser.inc svneol=native#text/plain
|
||||||
packages/libxml/src/HTMLtree.inc svneol=native#text/plain
|
packages/libxml/src/HTMLtree.inc svneol=native#text/plain
|
||||||
packages/libxml/src/SAX.inc svneol=native#text/plain
|
packages/libxml/src/SAX.inc svneol=native#text/plain
|
||||||
|
|||||||
@ -1,96 +0,0 @@
|
|||||||
(*
|
|
||||||
* Summary: old DocBook SGML parser
|
|
||||||
* Description: interface for a DocBook SGML non-verifying parser
|
|
||||||
* This code is DEPRECATED, and should not be used anymore.
|
|
||||||
*
|
|
||||||
* Copy: See Copyright for the status of this software.
|
|
||||||
*
|
|
||||||
* Author: Daniel Veillard
|
|
||||||
*)
|
|
||||||
|
|
||||||
#ifndef __DOCB_PARSER_H__
|
|
||||||
#define __DOCB_PARSER_H__
|
|
||||||
#include <libxml/xmlversion.h>
|
|
||||||
|
|
||||||
{ LIBXML_DOCB_ENABLED
|
|
||||||
|
|
||||||
#include <libxml/parser.h>
|
|
||||||
#include <libxml/parserInternals.h>
|
|
||||||
|
|
||||||
#ifndef IN_LIBXML
|
|
||||||
{ __GNUC__
|
|
||||||
#warning "The DOCBparser module has been deprecated in libxml2-2.6.0"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
{ __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
(*
|
|
||||||
* Most of the back-end structures from XML and SGML are shared.
|
|
||||||
*)
|
|
||||||
typedef xmlParserCtxt docbParserCtxt;
|
|
||||||
typedef xmlParserCtxtPtr docbParserCtxtPtr;
|
|
||||||
typedef xmlSAXHandler docbSAXHandler;
|
|
||||||
typedef xmlSAXHandlerPtr docbSAXHandlerPtr;
|
|
||||||
typedef xmlParserInput docbParserInput;
|
|
||||||
typedef xmlParserInputPtr docbParserInputPtr;
|
|
||||||
typedef xmlDocPtr docbDocPtr;
|
|
||||||
|
|
||||||
(*
|
|
||||||
* There is only few public functions.
|
|
||||||
*)
|
|
||||||
XMLPUBFUN int XMLCALL
|
|
||||||
docbEncodeEntities(unsigned char *out,
|
|
||||||
int *outlen,
|
|
||||||
unsigned char *in,
|
|
||||||
int *inlen, int quoteChar);
|
|
||||||
|
|
||||||
XMLPUBFUN docbDocPtr XMLCALL
|
|
||||||
docbSAXParseDoc (xmlChar *cur,
|
|
||||||
char *encoding,
|
|
||||||
docbSAXHandlerPtr sax,
|
|
||||||
void *userData);
|
|
||||||
XMLPUBFUN docbDocPtr XMLCALL
|
|
||||||
docbParseDoc (xmlChar *cur,
|
|
||||||
char *encoding);
|
|
||||||
XMLPUBFUN docbDocPtr XMLCALL
|
|
||||||
docbSAXParseFile (char *filename,
|
|
||||||
char *encoding,
|
|
||||||
docbSAXHandlerPtr sax,
|
|
||||||
void *userData);
|
|
||||||
XMLPUBFUN docbDocPtr XMLCALL
|
|
||||||
docbParseFile (char *filename,
|
|
||||||
char *encoding);
|
|
||||||
|
|
||||||
(**
|
|
||||||
* Interfaces for the Push mode.
|
|
||||||
*)
|
|
||||||
XMLPUBFUN void XMLCALL
|
|
||||||
docbFreeParserCtxt (docbParserCtxtPtr ctxt);
|
|
||||||
XMLPUBFUN docbParserCtxtPtr XMLCALL
|
|
||||||
docbCreatePushParserCtxt(docbSAXHandlerPtr sax,
|
|
||||||
void *user_data,
|
|
||||||
char *chunk,
|
|
||||||
int size,
|
|
||||||
char *filename,
|
|
||||||
xmlCharEncoding enc);
|
|
||||||
XMLPUBFUN int XMLCALL
|
|
||||||
docbParseChunk (docbParserCtxtPtr ctxt,
|
|
||||||
char *chunk,
|
|
||||||
int size,
|
|
||||||
int terminate);
|
|
||||||
XMLPUBFUN docbParserCtxtPtr XMLCALL
|
|
||||||
docbCreateFileParserCtxt(char *filename,
|
|
||||||
char *encoding);
|
|
||||||
XMLPUBFUN int XMLCALL
|
|
||||||
docbParseDocument (docbParserCtxtPtr ctxt);
|
|
||||||
|
|
||||||
{ __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif (* LIBXML_DOCB_ENABLED *)
|
|
||||||
|
|
||||||
#endif (* __DOCB_PARSER_H__ *)
|
|
||||||
Loading…
Reference in New Issue
Block a user