✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/share/gtk-doc/html/libxml2//libxml2-xmlmodule.html
<?xml version="1.0" encoding="UTF-8"?>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>xmlmodule: dynamic module loading</title>
    <meta name="generator" content="Libxml2 devhelp stylesheet"/>
    <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
    <link rel="up" href="general.html" title="API"/>
    <link rel="stylesheet" href="style.css" type="text/css"/>
    <link rel="chapter" href="general.html" title="API"/>
  </head>
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
    <table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
      <tr valign="middle">
        <td>
          <a accesskey="p" href="libxml2-xmlmemory.html">
            <img src="left.png" width="24" height="24" border="0" alt="Prev"/>
          </a>
        </td>
        <td>
          <a accesskey="u" href="general.html">
            <img src="up.png" width="24" height="24" border="0" alt="Up"/>
          </a>
        </td>
        <td>
          <a accesskey="h" href="index.html">
            <img src="home.png" width="24" height="24" border="0" alt="Home"/>
          </a>
        </td>
        <td>
          <a accesskey="n" href="libxml2-xmlreader.html">
            <img src="right.png" width="24" height="24" border="0" alt="Next"/>
          </a>
        </td>
        <th width="100%" align="center">libxml2 Reference Manual</th>
      </tr>
    </table>
    <h2>
      <span class="refentrytitle">xmlmodule</span>
    </h2>
    <p>xmlmodule - dynamic module loading</p>
    <p>basic API for dynamic module loading, used by libexslt added in 2.6.17 </p>
    <p>Author(s): Joel W. Reed </p>
    <div class="refsynopsisdiv">
      <h2>Synopsis</h2>
      <pre class="synopsis">typedef struct _xmlModule <a href="#xmlModule">xmlModule</a>;
typedef <a href="libxml2-xmlmodule.html#xmlModule">xmlModule</a> * <a href="#xmlModulePtr">xmlModulePtr</a>;
typedef enum <a href="#xmlModuleOption">xmlModuleOption</a>;
int	<a href="#xmlModuleFree">xmlModuleFree</a>			(<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module);
int	<a href="#xmlModuleSymbol">xmlModuleSymbol</a>			(<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module, <br/>					 const char * name, <br/>					 void ** symbol);
<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a>	<a href="#xmlModuleOpen">xmlModuleOpen</a>		(const char * name, <br/>					 int options);
int	<a href="#xmlModuleClose">xmlModuleClose</a>			(<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module);
</pre>
    </div>
    <div class="refsect1" lang="en">
      <h2>Description</h2>
    </div>
    <div class="refsect1" lang="en">
      <h2>Details</h2>
      <div class="refsect2" lang="en">
        <div class="refsect2" lang="en"><h3><a name="xmlModule">Structure </a>xmlModule</h3><pre class="programlisting">struct _xmlModule {
The content of this structure is not made public by the API.
} xmlModule;
</pre><p/>
</div>
        <hr/>
        <div class="refsect2" lang="en"><h3><a name="xmlModuleOption">Enum </a>xmlModuleOption</h3><pre class="programlisting">enum <a href="#xmlModuleOption">xmlModuleOption</a> {
    <a name="XML_MODULE_LAZY">XML_MODULE_LAZY</a> = 1 /* lazy binding */
    <a name="XML_MODULE_LOCAL">XML_MODULE_LOCAL</a> = 2 /*  local binding */
};
</pre><p/>
</div>
        <hr/>
        <div class="refsect2" lang="en"><h3><a name="xmlModulePtr">Typedef </a>xmlModulePtr</h3><pre class="programlisting"><a href="libxml2-xmlmodule.html#xmlModule">xmlModule</a> * xmlModulePtr;
</pre><p>A handle to a dynamically loaded module</p>
</div>
        <hr/>
        <div class="refsect2" lang="en"><h3><a name="xmlModuleClose"/>xmlModuleClose ()</h3><pre class="programlisting">int	xmlModuleClose			(<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module)<br/>
</pre><p>The close operations unload the associated module and free the data associated to the module.</p>
<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>module</tt></i>:</span></td><td>the module handle</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of argument error and -2 if the module could not be closed/unloaded.</td></tr></tbody></table></div></div>
        <hr/>
        <div class="refsect2" lang="en"><h3><a name="xmlModuleFree"/>xmlModuleFree ()</h3><pre class="programlisting">int	xmlModuleFree			(<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module)<br/>
</pre><p>The free operations free the data associated to the module but does not unload the associated shared library which may still be in use.</p>
<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>module</tt></i>:</span></td><td>the module handle</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 in case of success, -1 in case of argument error</td></tr></tbody></table></div></div>
        <hr/>
        <div class="refsect2" lang="en"><h3><a name="xmlModuleOpen"/>xmlModuleOpen ()</h3><pre class="programlisting"><a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a>	xmlModuleOpen		(const char * name, <br/>					 int options)<br/>
</pre><p>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 cannot guarantee that an UTF-8 string would work, which is why name is a const char * and not a const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * . TODO: options are not yet implemented.</p>
<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the module name</td></tr><tr><td><span class="term"><i><tt>options</tt></i>:</span></td><td>a set of <a href="libxml2-xmlmodule.html#xmlModuleOption">xmlModuleOption</a></td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>a handle for the module or NULL in case of error</td></tr></tbody></table></div></div>
        <hr/>
        <div class="refsect2" lang="en"><h3><a name="xmlModuleSymbol"/>xmlModuleSymbol ()</h3><pre class="programlisting">int	xmlModuleSymbol			(<a href="libxml2-xmlmodule.html#xmlModulePtr">xmlModulePtr</a> module, <br/>					 const char * name, <br/>					 void ** symbol)<br/>
</pre><p>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 cannot guarantee that an UTF-8 string would work, which is why name is a const char * and not a const <a href="libxml2-xmlstring.html#xmlChar">xmlChar</a> * .</p>
<div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>module</tt></i>:</span></td><td>the module</td></tr><tr><td><span class="term"><i><tt>name</tt></i>:</span></td><td>the name of the symbol</td></tr><tr><td><span class="term"><i><tt>symbol</tt></i>:</span></td><td>the resulting symbol address</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>0 if the symbol was found, or -1 in case of error</td></tr></tbody></table></div></div>
        <hr/>
      </div>
    </div>
  </body>
</html>

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
31 Aug 2026 10.12 AM
root / root
0755
general.html
5.34 KB
19 Jan 2022 2.53 PM
root / root
0644
home.png
0.639 KB
26 Jun 2020 12.29 PM
root / root
0644
index.html
3.858 KB
14 Feb 2022 3.19 PM
root / root
0644
left.png
0.448 KB
26 Jun 2020 12.29 PM
root / root
0644
libxml2-DOCBparser.html
16.954 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-HTMLparser.html
56.757 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-HTMLtree.html
23.88 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-SAX.html
37.964 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-SAX2.html
38.728 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-c14n.html
13.229 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-catalog.html
35.693 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-chvalid.html
19.37 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-debugXML.html
32.535 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-dict.html
13.245 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-encoding.html
29.2 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-entities.html
22.584 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-globals.html
34.807 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-hash.html
41.872 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-list.html
24.936 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-nanoftp.html
21.881 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-nanohttp.html
16.225 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-parser.html
134.624 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-parserInternals.html
122.271 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-pattern.html
18.908 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-relaxng.html
34.404 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-schemasInternals.html
63.575 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-schematron.html
16.707 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-threads.html
12.594 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-tree.html
229.312 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-uri.html
18.002 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-valid.html
96.195 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xinclude.html
15.546 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xlink.html
16.923 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlIO.html
56.772 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlautomata.html
34.362 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlerror.html
82.729 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlexports.html
3.733 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlmemory.html
23.458 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlmodule.html
7.199 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlreader.html
105.653 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlregexp.html
41.023 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlsave.html
14.453 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlschemas.html
41.523 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlschemastypes.html
43.409 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlstring.html
34.151 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlunicode.html
104.098 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlversion.html
18.634 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xmlwriter.html
109.451 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xpath.html
60.747 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xpathInternals.html
141.632 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2-xpointer.html
24.961 KB
19 Jan 2022 2.53 PM
root / root
0644
libxml2.devhelp2
381.307 KB
19 Jan 2022 2.53 PM
root / root
0644
right.png
0.461 KB
26 Jun 2020 12.29 PM
root / root
0644
style.css
0.801 KB
26 Jun 2020 12.29 PM
root / root
0644
up.png
0.396 KB
26 Jun 2020 12.29 PM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF