如何在Win32中创建FILETIME?
我有一个值 __int64
,它是一个 64 位 FILETIME
值。 FILETIME
有一个 dwLowDateTime
和 dwHighDateTime
。 当我尝试将 __int64 分配给 FILETIME 时,我得到了 C2440。 如何将 __int64
分配给 FILETIME
?
或者如何拆分__int64
,以便将低部分分配给dwLowDateTime
,将高部分分配给dwHighDateTime
?
I have a value __int64
that is a 64-bit FILETIME
value. FILETIME
has a dwLowDateTime
and dwHighDateTime
. When I try to assign a __int64
to a FILETIME
I get a C2440. How do I assign the __int64
to the FILETIME
?
Or how do I split the __int64
so that I can assign the low part to dwLowDateTime
and the high part to dwHighDateTime
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是基本轮廓。
不推荐方法
由于 FILETIME 的巧妙安排,它会起作用,但牺牲可移植性和清晰度是不值得的。 仅在经证明有迫切需要时使用,并将其包装在断言中以证明其有效。
Here's the basic outline.
NOT RECOMMENDED approach
It'll work due to the clever arrangement of FILETIME, but the sacrifice in portability and clarity is not worth it. Use only in times of proven dire need and wrap it in asserts to prove it will work.
Mike,
您可以使用 ULARGE_INTEGER 结构将 __int64 复制到 FILETIME 中:
Mike,
You could use a ULARGE_INTEGER struct to copy the __int64 into the FILETIME: