EVOLUTION-MANAGER
Edit File: getDynLib.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Retrieve the dynamic library (or DLL) associated with a...</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for getDynLib-methods {inline}"><tr><td>getDynLib-methods {inline}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Retrieve the dynamic library (or DLL) associated with a package of a function generated by cfunction</h2> <h3>Description</h3> <p>The <code>getDynLib</code> function retrieves the dynamic library (or DLL) associated with a package or with a function generated by <code><a href="cfunction.html">cfunction</a></code> </p> <h3>Methods</h3> <dl> <dt><code>signature(x = "CFunc")</code></dt><dd><p>Retrieves the dynamic library associated with the function generated by <code><a href="cfunction.html">cfunction</a></code>. The library is dynamically loaded if necessary. </p> </dd> <dt><code>signature(x = "CFuncList")</code></dt><dd><p>Retrieves the dynamic library associated with a set of functions generated by <code><a href="cfunction.html">cfunction</a></code>. The library is dynamically loaded if necessary. </p> </dd> <dt><code>signature(x = "character")</code></dt><dd> <p>Retrieves the dynamic library of the given name. This typically refers to package names, but can be any name of the list returned by <code><a href="../../base/html/getLoadedDLLs.html">getLoadedDLLs</a></code> </p> </dd> </dl> <h3>See Also</h3> <p><code><a href="../../base/html/getLoadedDLLs.html">getLoadedDLLs</a></code>, <code><a href="../../base/html/dynload.html">dyn.load</a></code> </p> <h3>Examples</h3> <pre> ## Not run: getDynLib( "base" ) f <- cfunction( signature() , "return R_NilValue ;" ) getDynLib( f ) ## End(Not run)</pre> <hr /><div style="text-align: center;">[Package <em>inline</em> version 0.3.19 <a href="00Index.html">Index</a>]</div> </body></html>