dll.isLoaded

Syntax dll.isLoaded (dllPath)

Params dllPath is the path on disk to an external DLL.

Action Determines if the specified DLL has been loaded by Frontier as a stay-resident DLL.

Returns True if the DLL is loaded, false if not.

Examples dll.isLoaded (Frontier.pathString + "DLLs" + file.getPathChar () + "regex.dll")

   » false //the regex.dll is not loaded

Notes If the DLL isn't found, a script error is generated.

Some DLLs are stay-resident DLLs: they get loaded and stay loaded. Others get loaded when they're called and unloaded after. It's up to the DLL developer whether or not their DLL should be stay-resident.

See Also dll.load

dll.unload

Discuss