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
LispWorks Foreign Language Interface User Guide and Reference Manual - 29 Sep 2017