ghc-7.8.4: The GHC API

Safe HaskellNone
LanguageHaskell98

ObjLink

Synopsis

Documentation

loadDLL :: String -> IO (Maybe String) Source

loadDLL loads a dynamic library using the OS's native linker (i.e. dlopen() on Unix, LoadLibrary() on Windows). It takes either an absolute pathname to the file, or a relative filename (e.g. "libfoo.so" or "foo.dll"). In the latter case, loadDLL searches the standard locations for the appropriate library.