Sha256: ae82e1c7eb781df4bdc9d66c2e054f780e228c632cf710d99755dbe1e5e15d60

Contents?: true

Size: 567 Bytes

Versions: 1

Compression:

Stored size: 567 Bytes

Contents

# Reopen module and supply missing constants and 
# functions from windows-pr gem
#
# TODO: Fork and send pull request for Windows::Window module, be sure to lock bundle before sending request
#
module Windows
  module Window

    SC_CLOSE = 0xF060

    API.auto_namespace = 'Windows::Window'
    API.auto_constant  = true
    API.auto_method    = true
    API.auto_unicode   = false

    API.new('IsWindow', 'L', 'I', 'user32')
    API.new('SetForegroundWindow', 'L', 'I', 'user32')
    API.new('SendMessageA', 'LIIP', 'I', 'user32')

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
win32-autogui-0.4.0 lib/win32/autogui/windows/window.rb