Sha256: d47b04ffd58b946d6b286712a4af6404de48018c78aaed4f86d4163060463267
Contents?: true
Size: 693 Bytes
Versions: 1
Compression:
Stored size: 693 Bytes
Contents
module RAutomation module Adapter module Ffi # @private module Constants WM_GETTEXT = 0xD WM_SETTEXT = 0xC WM_GETTEXTLENGTH = 0xE WM_CLOSE = 0x10 SW_MAXIMIZE = 3 SW_MINIMIZE = 6 SW_RESTORE = 9 SMTO_ABORTIFHUNG = 0x2 STANDARD_RIGHTS_REQUIRED = 0xF0000 SYNCHRONIZE = 0x100000 PROCESS_ALL_ACCESS = STANDARD_RIGHTS_REQUIRED | SYNCHRONIZE | 0xFFF BM_CLICK = 0xF5 # keybd_event constants KEYEVENTF_EXTENDEDKEY = 0x1 KEYEVENTF_KEYUP = 0x2 # GetWindow constants GW_ENABLEDPOPUP = 6 end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rautomation-0.3.0 | lib/rautomation/adapter/ffi/constants.rb |