ruby的魅力:直接呼叫Win32API

來源:互聯網
上載者:User
Ruby是很強大,可以利用附加庫dl/win32的Win32API模組直接呼叫win32API

Win32API.new
參數1 字串 呼叫dll名稱
參數2 字串 dll中dllexport的名稱
參數3 字串數組 表示每個參數的類型 L代表Long P代表Point I代表Int V代表Void (在實際使用的時候HResult和各種Handle都是Long,字串是P)
參數4 字串 表示傳回值類型 同上

require "dl/win32"

FindWindow = Win32API.new 'user32.dll', 'FindWindow', %w(L P), 'L'
SetWindowText = Win32API.new 'user32.dll', 'SetWindowText', %W(L P), 'I'

if ARGV.length == 0 then
  puts "使用說明:"
  puts "一個參數時,是根據表單標題查看表單ID"
  puts "兩個參數時,是根據參數1的標題尋找表單,然後更改為參數2的標題"
elsif ARGV.length > 0 then

  win = FindWindow.call(0,ARGV.shift)
  puts win

  if win != 0 then
    bSet = SetWindowText.call(win, ARGV.shift)
    if bSet == 1 then
      puts "Success!"
    else
      puts "Fail!"
    end
  end
  
end
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.