LoadTypeLib {SWinTypeLibs} | R Documentation |
This loads the specified file which is assumed to be a type library into R and returns a reference or handle to that library object. This can then be used in subsequent calls to query the contents of the library.
LoadTypeLib(fileName)
fileName |
character vector of length 1. This is the name of the file to load. |
This calls the routine LoadTypeLib()
in the Microsoft API.
An object of class ITypeLib
containing a reference to the C-level handle
for the loaded library.
Duncan Temple Lang <duncan@wald.ucdavis.edu>
http://msdn.microsoft.com/library http://www.omegahat.org/RWinTypeLibs
getTypeLibTypes
getTypeDocumentation
if(file.exists("c:\\WINNT\\system32\\wmpui.dll")) { l = LoadTypeLib("c:\\WINNT\\system32\\wmpui.dll") names(l) l[[1]] print(getTypeDocumentation(l, 14)) print(getTypeLibTypes(l)) }