Sha256: 76f931694cb5cdd4dc52635e5128d16fa93d0224a300e92c4c7f668031d5f7fe

Contents?: true

Size: 1.14 KB

Versions: 33

Compression:

Stored size: 1.14 KB

Contents

/*
 * Summary: dynamic module loading
 * Description: basic API for dynamic module loading, used by
 *              libexslt added in 2.6.17
 *
 * Copy: See Copyright for the status of this software.
 *
 * Author: Joel W. Reed
 */

#ifndef __XML_MODULE_H__
#define __XML_MODULE_H__

#include <libxml/xmlversion.h>

#ifdef LIBXML_MODULES_ENABLED

#ifdef __cplusplus
extern "C" {
#endif

/**
 * xmlModulePtr:
 *
 * A handle to a dynamically loaded module
 */
typedef struct _xmlModule xmlModule;
typedef xmlModule *xmlModulePtr;

/**
 * xmlModuleOption:
 *
 * enumeration of options that can be passed down to xmlModuleOpen()
 */
typedef enum {
    XML_MODULE_LAZY = 1,	/* lazy binding */
    XML_MODULE_LOCAL= 2		/* local binding */
} xmlModuleOption;

XMLPUBFUN xmlModulePtr XMLCALL xmlModuleOpen	(const char *filename,
						 int options);

XMLPUBFUN int XMLCALL xmlModuleSymbol		(xmlModulePtr module,
						 const char* name,
						 void **result);

XMLPUBFUN int XMLCALL xmlModuleClose		(xmlModulePtr module);

XMLPUBFUN int XMLCALL xmlModuleFree		(xmlModulePtr module);

#ifdef __cplusplus
}
#endif 

#endif /* LIBXML_MODULES_ENABLED */

#endif /*__XML_MODULE_H__ */

Version data entries

33 entries across 33 versions & 4 rubygems

Version Path
swipe-rails-0.0.5 vendor/bundle/gems/nokogiri-1.6.0/ports/i686-apple-darwin11/libxml2/2.8.0/include/libxml2/libxml/xmlmodule.h
rsvg2-1.1.5-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gtksourceview2-1.1.5-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gstreamer-1.1.5-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
rsvg2-1.1.4-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gtksourceview2-1.1.4-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gstreamer-1.1.4-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
rsvg2-1.1.3-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gtksourceview2-1.1.3-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gstreamer-1.1.3-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
rsvg2-1.1.2-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gtksourceview2-1.1.2-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gstreamer-1.1.2-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gstreamer-1.1.1-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
rsvg2-1.1.0-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gtksourceview2-1.1.0-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gstreamer-1.1.0-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
rsvg2-1.0.3-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
gtksourceview2-1.0.3-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h
rsvg2-1.0.2-x86-mingw32 vendor/local/include/libxml2/libxml/xmlmodule.h