欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

基 礎(chǔ) 函 數(shù) 參 考


DllClose

關(guān)閉打開的 DLL 文件.

DllClose ( dll 句柄 )

參 數(shù)

dll 句柄 目標(biāo) DLL 文件句柄, 可使用此前調(diào)用 DllOpen 函數(shù)的返回值.

返 回 值

None.

備 注

腳本終止時,AutoIt 會自動關(guān)閉打開的 DLL 文件. 但明確調(diào)用 DllClose 函數(shù)關(guān)閉 DLL 文件總是一個好主意.

相 關(guān) 函 數(shù)

DllCall, DllOpen

函 數(shù) 示 例


Local $dll = DllOpen("user32.dll")
Local $result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "若干文本", "str", "若干標(biāo)題", "int", 0)
DllClose($dll)

Local $dll = DllOpen("user32.dll")
Local $result
$result = DllCall($dll, "int", "MessageBoxW", "hwnd", 0, "wstr", "1-文本", "wstr", "標(biāo)題-1", "int", 0)
$result = DllCall($dll, "int", "MessageBoxA", "hwnd", 0, "str", "2-文本", "str", "標(biāo)題-2", "int", 0)
$result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "3-文本", "str", "標(biāo)題-3", "int", 0)
DllClose($dll)

provider with jb51.net (unicode)