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
?