Quantcast
Channel: Gautam Jain's Blog » Windows
Browsing latest articles
Browse All 2 View Live

Unix time (__time64_t or time_t) to FILETIME

Here is the code to convert unix time (__time64_t) to FILETIME. You can also use time_t, in which case you would need to use Int32x32to64(t, 10000000) function to multiply in the below code. void...

View Article


FILETIME to Unix Time (__time64_t or time_t)

Here is the code to convert FILETIME to Unix Time (__time64_t). You can also use time_t instead of __time64_t. __time64_t FileTimeToUnixTime(FILETIME & ft) { ULARGE_INTEGER ull;   ull.LowPart =...

View Article

Browsing latest articles
Browse All 2 View Live