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