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

Function FileTimeToSystemTime

Win32Lib/Win32Lib.cpp:199–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

197}
198
199SYSTEMTIME FileTimeToSystemTime(const FILETIME& ft)
200{
201 ThrowIfZero(ft);
202 SYSTEMTIME st;
203 if (!::FileTimeToSystemTime(&ft, &st))
204 ThrowLastError("FileTimeToSystemTime");
205 return st;
206}
207
208FILETIME SystemTimeToFileTime(const SYSTEMTIME& st)
209{

Callers 8

GetDateTextFunction · 0.85
GetDateTimeTextFunction · 0.85
GetTimeTextFunction · 0.85
USTimeToFiletimeMethod · 0.85
MakeFileTimeFunction · 0.85
ReadLocalTimeMsFunction · 0.85
ReadLocalTimeFunction · 0.85
FormatDateTimeFunction · 0.85

Calls 2

ThrowIfZeroFunction · 0.85
ThrowLastErrorFunction · 0.85

Tested by

no test coverage detected