Ruby 中的 Windows GetTickCount
是否可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,例如 FFI 是可能的。
首先,你应该安装
ffi
gem:然后附加这个函数:
Yes, it's possible with FFI for example.
At first, you should install
ffi
gem:And then attach this function:
使用 windows api:
或
Time.now - t.call() / 1000.0
获取机器启动的时间use windows api:
or
Time.now - t.call() / 1000.0
to get a time when machine was booted