MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / FileTimeToUInt64

Function FileTimeToUInt64

DebugView++Lib/DBLogReader.cpp:24–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24uint64_t FileTimeToUInt64(const FILETIME& ft)
25{
26 ULARGE_INTEGER value;
27 value.LowPart = ft.dwLowDateTime;
28 value.HighPart = ft.dwHighDateTime;
29 return value.QuadPart;
30}
31
32double GetDifference(FILETIME ft1, FILETIME ft2)
33{

Callers 1

GetDifferenceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected