parser.h

Tipo de función entityDeclSAXFunc

Se ha analizado una definición de entidad.

Sintaxis

/**
 * entityDeclSAXFunc:
 * @ctx:  the user data (XML parser context)
 * @name:  the entity name
 * @type:  the entity type
 * @publicId: The public ID of the entity
 * @systemId: The system ID of the entity
 * @content: the entity value (without processing).
 *
 * An entity definition has been parsed.
 */
typedef void (*entityDeclSAXFunc) (
			void *ctx,
			const xmlChar *name,
			int type,
			const xmlChar *publicId,
			const xmlChar *systemId,
			xmlChar *content);

Parámetros

ctx
Los datos del usuario (contexto de analizador XML).
name
El nombre de la entidad.
type
El tipo de entidad.
publicId
El ID público de la entidad.
systemId
El ID de sistema de la entidad.
content
El valor de la entidad (sin procesar).