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

Function MakeFileTime

DebugView++Lib/FileIO.cpp:50–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48};
49
50FILETIME MakeFileTime(uint64_t t)
51{
52 uint32_t mask = ~0U;
53 FILETIME ft;
54 ft.dwHighDateTime = (t >> 32) & mask;
55 ft.dwLowDateTime = t & mask;
56 return ft;
57}
58
59FILETIME MakeFileTime(const std::string text)
60{

Callers 1

ReadLogFileMessageFunction · 0.85

Calls 3

FileTimeToSystemTimeFunction · 0.85
LocalFileTimeToFileTimeFunction · 0.85
SystemTimeToFileTimeFunction · 0.85

Tested by

no test coverage detected