xpath.h
Tipo de función xmlXPathVariableLookupFunc
Prototipo para las retrollamadas utilizadas para conectar la búsqueda de variables en el motor XPath.
Devuelve el valor del objeto XPath o NULL si no se encuentra.
Sintaxis
/** * xmlXPathVariableLookupFunc: * @ctxt: an XPath context * @name: name of the variable * @ns_uri: the namespace name hosting this variable * * Prototype for callbacks used to plug variable lookup in the XPath * engine. * * Returns the XPath object value or NULL if not found. */ typedef xmlXPathObjectPtr (*xmlXPathVariableLookupFunc) ( void *ctxt, const xmlChar *name, const xmlChar *ns_uri);
Parámetros
- ctxt
- Un contexto XPath.
- name
- Nombre de la variable.
- ns_uri
- El espacio con nombre al que pertenece esta variable.