Function Reference

DllClose

開いているDLLを閉じます。

DllClose ( dllhandle )

 

パラメータ

dllhandle DllOpen呼び出し時に返されるDLLのハンドル。

 

返し値

なし。

 

注意

AutoItは終了時、自動で全てのDLLファイルを閉じますがDllCloseの使用がより適切です。

 

関連

DllCall, DllOpen

 


$dll = DllOpen("user32.dll")
$result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "Some text", "str", "Some title", "int", 0)
DllClose($dll)