parser.h

Tipo de función processingInstructionSAXFunc

Se ha analizado una instrucción de procesamiento.

Sintaxis

/**
 * processingInstructionSAXFunc:
 * @ctx:  the user data (XML parser context)
 * @target:  the target name
 * @data: the PI data's
 *
 * A processing instruction has been parsed.
 */
typedef void (*processingInstructionSAXFunc) (
			void *ctx,
			const xmlChar *target,
			const xmlChar *data);

Parámetros

ctx
Los datos del usuario (contexto de analizador XML).
target
El nombre del objetivo.
data
Los datos de la instrucción de procesamiento.