Method: Fzeet::CommonDialog.crackMessage

Defined in:
lib/fzeet/windows/comdlg/Common.rb

.crackMessage(hwnd, uMsg, wParam, lParam) ⇒ Object



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/fzeet/windows/comdlg/Common.rb', line 107

def self.crackMessage(hwnd, uMsg, wParam, lParam)
  window = @@instances[hwnd.to_i]

  args = {
    hwnd: hwnd,
    uMsg: uMsg,
    wParam: wParam,
    lParam: lParam,
    result: 0,
    window: window,
    sender: window
  }

  args
end