Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
# Wrap win32 API function mouse_event() from the User32 dll.
|
||||
function mouse_event_wrapper(dwFlags,dx,dy,dwData,dwExtraInfo)
|
||||
ccall((:mouse_event, "User32"),stdcall,Nothing,(UInt32,UInt32,UInt32,UInt32,UInt),dwFlags,dx,dy,dwData,dwExtraInfo)
|
||||
end
|
||||
|
||||
function click()
|
||||
mouse_event_wrapper(0x2,0,0,0,0)
|
||||
mouse_event_wrapper(0x4,0,0,0,0)
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue