Ruby 中的 Windows GetTickCount

发布于 2024-11-01 19:41:50 字数 212 浏览 1 评论 0原文

是否可以在 Ruby 中获取当前窗口的 TickCount?

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

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

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静赏你的温柔 2024-11-08 19:41:50

是的,例如 FFI 是可能的。
首先,你应该安装 ffi gem:

gem install ffi

然后附加这个函数:

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

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
不喜欢何必死缠烂打 2024-11-08 19:41:50

使用 windows api:

require 'Win32API'

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

Time.now - t.call() / 1000.0 获取机器启动的时间

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文