Sha256: 4355b68f4e6f7247b73e73a9e28452d09bab5cb281acf7cb84c2762059d3ca80
Contents?: true
Size: 622 Bytes
Versions: 3
Compression:
Stored size: 622 Bytes
Contents
require 'windows/api' # The Windows module serves as a namespace only. module Windows # The Mailslot module contains functions and constants related to the # Windows mailslot IPC mechanism. module Mailslot API.auto_namespace = 'Windows::Mailslot' API.auto_constant = true API.auto_method = true API.auto_unicode = true private # Constants MAILSLOT_WAIT_FOREVER = 0xFFFFFFFF MAILSLOT_NO_MESSAGE = 0xFFFFFFFF API.new('CreateMailslot', 'SLLP', 'L') API.new('GetMailslotInfo', 'LPPPP', 'B') API.new('SetMailslotInfo', 'LL', 'B') end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
windows-pr-1.2.6 | lib/windows/mailslot.rb |
windows-pr-1.2.5 | lib/windows/mailslot.rb |
windows-pr-1.2.2 | lib/windows/mailslot.rb |