Function Reference |
首页 后退 前进 |
DllClose
关闭打开的 DLL 文件.
DllClose ( dllhandle ) 参数
返回值 None. 备注 脚本终止时,AutoIt 会自动关闭打开的 DLL 文件. 但仍然推荐调用 DllClose 函数关闭 DLL 文件.
该函数可以通过exect命令调用. 相关 函数示例 Local $hDLL = DllOpen("user32.dll") ----------------------------------------
exect=$var_hdll=DllOpen('user32.dll')||$var_res=DllCall($var_hdll,'int','MessageBox','hwnd',0,'str','Текст','str','Заголовок','int',0)||$var_hdll=DllClose(($var_hdll)||_ViewValues($var_res) ;; DLL调用的例子 |