What is the proper way to convert a FILETIME structure into __int64? Can you please tell me?
FILETIME
__int64
Try
(__int64(filetime.dwHighDateTime)<<32) | __int64(filetime.dwLowDateTime)