Closes a previously opened DLL.
DllClose ( dllhandle )
| dllhandle | The handle of a dll, as returned by a previous call to DllOpen. |
Local $dll = DllOpen("user32.dll")
Local $result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "Some text", "str", "Some title", "int", 0)
DllClose($dll)