开发者

Windows GetTickCount in Ruby

开发者 https://www.devze.com 2023-02-24 09:25 出处:网络
开发者_JAVA百科Is it possible go get the current windows TickCount in Ruby? (http://msdn.microsoft.com/en-us/library/ms724408%28v=vs.85%29.aspx)Yes, it\'s possible with FFI for example.
开发者_JAVA百科

Is it possible go get the current windows TickCount in Ruby?

(http://msdn.microsoft.com/en-us/library/ms724408%28v=vs.85%29.aspx)


Yes, it's possible with FFI for example. At first, you should install ffi gem:

gem install ffi

And then attach this function:

require 'ffi'
module Foo
  extend FFI::Library

  ffi_lib "kernel32.dll"
  ffi_convention :stdcall

  attach_function :get_tick_count, :GetTickCount, [ ], :int
end
puts Foo.get_tick_count #=> 107073812


use windows api:

require 'Win32API'

t = Win32API.new("kernel32", "GetTickCount", nil, 'L')
t.call()

or Time.now - t.call() / 1000.0 to get a time when machine was booted

0

精彩评论

暂无评论...
验证码 换一张
取 消