mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-07 22:19:12 +00:00
Revert unintended portion of a checkin; these files were not supposed to
have been changed with the most recent Makefile changes.
This commit is contained in:
parent
f21b3de88b
commit
180f35f5eb
2 changed files with 1 additions and 14 deletions
|
@ -330,11 +330,6 @@ typedef int (*XML_ExternalEntityRefHandler)(XML_Parser parser,
|
|||
const XML_Char *systemId,
|
||||
const XML_Char *publicId);
|
||||
|
||||
typedef int (*XML_InternalEntityRefHandler)(XML_Parser parser,
|
||||
const XML_Char *context,
|
||||
const XML_Char *name,
|
||||
const XML_Char *text);
|
||||
|
||||
/* This structure is filled in by the XML_UnknownEncodingHandler
|
||||
to provide information to the parser about encodings that are unknown
|
||||
to the parser.
|
||||
|
|
|
@ -4,7 +4,7 @@ See the file COPYING for copying permission.
|
|||
*/
|
||||
|
||||
static char RCSId[]
|
||||
= "$Header: /cvsroot/expat/expat/lib/xmlparse.c,v 1.14 2001/01/24 19:38:54 fdrake Exp $";
|
||||
= "$Header: /cvsroot/expat/expat/lib/xmlparse.c,v 1.15 2001/07/25 03:05:22 fdrake Exp $";
|
||||
|
||||
#ifdef COMPILED_FROM_DSP
|
||||
# include "winconfig.h"
|
||||
|
@ -371,7 +371,6 @@ typedef struct {
|
|||
XML_EndNamespaceDeclHandler m_endNamespaceDeclHandler;
|
||||
XML_NotStandaloneHandler m_notStandaloneHandler;
|
||||
XML_ExternalEntityRefHandler m_externalEntityRefHandler;
|
||||
XML_InternalEntityRefHandler m_internalEntityRefHandler;
|
||||
void *m_externalEntityRefHandlerArg;
|
||||
XML_UnknownEncodingHandler m_unknownEncodingHandler;
|
||||
XML_ElementDeclHandler m_elementDeclHandler;
|
||||
|
@ -721,7 +720,6 @@ XML_Parser XML_ExternalEntityParserCreate(XML_Parser oldParser,
|
|||
XML_EndNamespaceDeclHandler oldEndNamespaceDeclHandler = endNamespaceDeclHandler;
|
||||
XML_NotStandaloneHandler oldNotStandaloneHandler = notStandaloneHandler;
|
||||
XML_ExternalEntityRefHandler oldExternalEntityRefHandler = externalEntityRefHandler;
|
||||
XML_InternalEntityRefHandler oldInternalEntityRefHandler = internalEntityRefHandler;
|
||||
XML_UnknownEncodingHandler oldUnknownEncodingHandler = unknownEncodingHandler;
|
||||
XML_ElementDeclHandler oldElementDeclHandler = elementDeclHandler;
|
||||
XML_AttlistDeclHandler oldAttlistDeclHandler = attlistDeclHandler;
|
||||
|
@ -1041,12 +1039,6 @@ void XML_SetExternalEntityRefHandlerArg(XML_Parser parser, void *arg)
|
|||
externalEntityRefHandlerArg = parser;
|
||||
}
|
||||
|
||||
void XML_SetInternalEntityRefHandler(XML_Parser parser,
|
||||
XML_InternalEntityRefHandler handler)
|
||||
{
|
||||
internalEntityRefHandler = handler;
|
||||
}
|
||||
|
||||
void XML_SetUnknownEncodingHandler(XML_Parser parser,
|
||||
XML_UnknownEncodingHandler handler,
|
||||
void *data)
|
||||
|
|
Loading…
Add table
Reference in a new issue