dll.unload
| Syntax |
dll.unload (dllPath)
|
| Params |
dllPath is the path on disk to a stay-resident DLL to unload.
|
| Action |
Unloads the DLL.
|
| Returns |
True if the DLL is unloaded.
|
| Examples |
dll.unload (Frontier.pathString + "DLLs" + file.getPathChar () + "regex.dll") » true
|
| Notes |
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
|