Ruby 使用 Win32API 获取函数指针

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

require "Win32API"

def system(cmd)
  sys = Win32API.new("crtdll", "system", ['P'], 'L')
  sys.Call(cmd)
end

system("dir")  # cmd /c not needed!