Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.24 KB | None | 0 0
  1. _Sleep(1000) ; sleep 1 giây
  2. Func _Sleep($MiliSec)
  3.     Local $tData = DllStructCreate("int64 time;")
  4.     $tData.time = $MiliSec * -10000
  5.     DllCall("ntdll.dll", "dword", "ZwDelayExecution", "int", 0, "ptr", DllStructGetPtr($tData))
  6. EndFunc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement