Sha256: c89f5bc827bc219ea490d6ee655efd4a8982ff1523b0e0120ff9308fcb35c170

Contents?: true

Size: 482 Bytes

Versions: 1

Compression:

Stored size: 482 Bytes

Contents

require 'win/library'

module Win
  module Gui
    # Contains constants and Win32API functions related to inter-Window messaging
    #
    module Message
      include Win::Library

      # Windows Message Get Text
      WM_GETTEXT = 0x000D
      # Windows Message Sys Command
      WM_SYSCOMMAND = 0x0112
      # Sys Command Close
      SC_CLOSE = 0xF060

      function 'PostMessage', 'LLLL', 'L'
      function 'SendMessage', 'LLLP', 'L'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
win-0.1.0 lib/win/gui/message.rb