From f660f9d2924c7549bc87e7f9b4ece7c9727b3682 Mon Sep 17 00:00:00 2001 From: Aron Xu Date: Tue, 18 Sep 2012 01:15:22 +0800 Subject: Imported Upstream version 2.9.0 --- doc/devhelp/libxml2-xmlmodule.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/devhelp/libxml2-xmlmodule.html') diff --git a/doc/devhelp/libxml2-xmlmodule.html b/doc/devhelp/libxml2-xmlmodule.html index 554cd91..08bb4ef 100644 --- a/doc/devhelp/libxml2-xmlmodule.html +++ b/doc/devhelp/libxml2-xmlmodule.html @@ -84,11 +84,11 @@ The content of this structure is not made public by the API.
module:the module handle
Returns:0 in case of success, -1 in case of argument error

xmlModuleOpen ()

xmlModulePtr	xmlModuleOpen		(const char * name, 
int options)
-

Opens a module/shared library given its name or path TODO: options are not yet implemented.

+

Opens a module/shared library given its name or path NOTE: that due to portability issues, behaviour can only be guaranteed with @name using ASCII. We canot guarantee that an UTF-8 string would work, which is why name is a const char * and not a const xmlChar * . TODO: options are not yet implemented.

name:the module name
options:a set of xmlModuleOption
Returns:a handle for the module or NULL in case of error

xmlModuleSymbol ()

int	xmlModuleSymbol			(xmlModulePtr module, 
const char * name,
void ** symbol)
-

Lookup for a symbol address in the given module

+

Lookup for a symbol address in the given module NOTE: that due to portability issues, behaviour can only be guaranteed with @name using ASCII. We canot guarantee that an UTF-8 string would work, which is why name is a const char * and not a const xmlChar * .

module:the module
name:the name of the symbol
symbol:the resulting symbol address
Returns:0 if the symbol was found, or -1 in case of error

-- cgit v1.2.3