Returns the real pathname of a connected module.
fli
connected-module-pathname name => pathname
name⇩ |
A string or symbol. |
pathname |
A pathname or nil . |
The function connected-module-pathname
returns the real pathname of the connected module registered with name name.
If no module name is registered, or if the module name is not connected, then connected-module-pathname
returns nil
.
(fli:connected-module-pathname "gdi32") => #P"C:/WINNT/system32/GDI32.dll" (fli:register-module :user-dll :real-name "user32" :connection-style :immediate) => :user-dll (fli:connected-module-pathname :user-dll) => #P"C:/WINNT/system32/USER32.dll" (fli:disconnect-module :user-dll) => t (fli:connected-module-pathname :user-dll) => nil
Foreign Language Interface User Guide and Reference Manual - 01 Dec 2021 19:34:58