Opens a DLL file for use in DllCall.
DllOpen ( "filename" )
| filename | Filename of the DLL file to open. |
| Success: | Returns a dll "handle" to be used with subsequent Dll functions. |
| Failure: | Returns -1 if error occurs. |
Local $dll = DllOpen("user32.dll")
Local $result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "Some text", "str", "Some title", "int", 0)
DllClose($dll)