13 lines
379 B
Text
13 lines
379 B
Text
|
|
||
|
// Stop the parser when an entity declaration is encountered.
|
||
|
static void
|
||
|
EntityDeclHandler(void *userData,
|
||
|
const XML_Char *entityName, int is_parameter_entity,
|
||
|
const XML_Char *value, int value_length,
|
||
|
const XML_Char *base, const XML_Char *systemId,
|
||
|
const XML_Char *publicId, const XML_Char *notationName)
|
||
|
{
|
||
|
XML_StopParser((XML_Parser)userData, XML_FALSE);
|
||
|
}
|
||
|
|