parser.h
Tipo de función unparsedEntityDeclSAXFunc
Qué hacer cuando se analiza una declaración de entidad no analizada.
Sintaxis
/** * unparsedEntityDeclSAXFunc: * @ctx: the user data (XML parser context) * @name: The name of the entity * @publicId: The public ID of the entity * @systemId: The system ID of the entity * @notationName: the name of the notation * * What to do when an unparsed entity declaration is parsed. */ typedef void (*unparsedEntityDeclSAXFunc)( void *ctx, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName);
Parámetros
- ctx
- Los datos del usuario (contexto de analizador XML).
- name
- El nombre de la entidad.
- publicId
- El ID público de la entidad.
- systemId
- El ID de sistema de la entidad.
- notationName
- El nombre de la notación.