This function provides a way to get a list of all the DLLs (see dyn.load) that are currently loaded in the R session.
此功能提供了一种方式来获得所有的DLL列表(见dyn.load)目前装在R会话。
用法----------Usage----------
getLoadedDLLs()
Details
详情----------Details----------
This queries the internal table that manages the DLLs.
查询管理的DLL的内部表。
值----------Value----------
An object of class "DLLInfoList" which is a list with an element corresponding to each DLL that is currently loaded in the session. Each element is an object of class "DLLInfo" which has the following entries.
一个类的对象"DLLInfoList"这是一个元素对应到目前的每个会话中加载的DLL列表。每个元素都是一个对象类"DLLInfo"有以下条目。
参数:name
the abbreviated name.
缩写名称。
参数:path
the fully qualified name of the loaded DLL.
加载的DLL的完全合格的名称。
参数:dynamicLookup
a logical value indicating whether R uses only the registration information to resolve symbols or whether it searches the entire symbol table of the DLL.
一个逻辑值,该值指示是否R使用注册信息来解决符号或是否搜索整个符号表中的DLL。
参数:handle
a reference to the C-level data structure that provides access to the contents of the DLL. This is an object of class "DLLHandle".
C级的数据结构,它提供了访问DLL的内容参考。这是一个对象的类"DLLHandle"。
Note that the class DLLInfo has an overloaded method for $ which can be used to resolve native symbols within that DLL. Therefore, one must access the R-level elements described above using [[, e.g. x[["name"]] or x[["handle"]].
请注意,类DLLInfo有一个重载的方法$可以用来解决该DLL内的本地符号。因此,必须访问的R-级以上使用[[,如描述元素x[["name"]]或x[["handle"]]。
注意----------Note----------
We are starting to use the handle elements in the DLL object to resolve symbols more directly in R.
我们开始使用DLL中的对象handle元素符号更直接解决在R
作者(S)----------Author(s)----------
Duncan Temple Lang <a href="mailto:duncan@wald.ucdavis.edu">duncan@wald.ucdavis.edu</a>.