mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-10-21 14:53:44 +03:00
cleanup patch from Anthony Jones fix the headers to avoid in make scan
* SAX.c: cleanup patch from Anthony Jones * doc/Makefile.am: fix the headers to avoid in make scan * parserInternals.c xpath.c include/libxml/*.h: cleanup of the includes, * vs Ptr and general cleanup * parsedecl.py: first version of a script to extract the module interfaces, the goal will be to provide .decl or XML specification of the interfaces to build wrappers. Daniel
This commit is contained in:
@@ -335,8 +335,7 @@ void xmlXPathRegisterVariableLookup (xmlXPathContextPtr ctxt,
|
||||
/*
|
||||
* Function Lookup forwarding
|
||||
*/
|
||||
typedef xmlXPathFunction
|
||||
(*xmlXPathFuncLookupFunc) (void *ctxt,
|
||||
typedef xmlXPathFunction xmlXPathFuncLookupFunc (void *ctxt,
|
||||
const xmlChar *name,
|
||||
const xmlChar *ns_uri);
|
||||
|
||||
@@ -448,7 +447,7 @@ int valuePush (xmlXPathParserContextPtr ctxt,
|
||||
xmlXPathObjectPtr xmlXPathNewString (const xmlChar *val);
|
||||
xmlXPathObjectPtr xmlXPathNewCString (const char *val);
|
||||
xmlXPathObjectPtr xmlXPathWrapString (xmlChar *val);
|
||||
xmlXPathObjectPtr xmlXPathWrapCString (char *val);
|
||||
xmlXPathObjectPtr xmlXPathWrapCString (char * val);
|
||||
xmlXPathObjectPtr xmlXPathNewFloat (double val);
|
||||
xmlXPathObjectPtr xmlXPathNewBoolean (int val);
|
||||
xmlXPathObjectPtr xmlXPathNewNodeSet (xmlNodePtr val);
|
||||
|
Reference in New Issue
Block a user