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

Function LocalFileTimeToFileTime

Win32Lib/Win32Lib.cpp:190–197  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188}
189
190FILETIME LocalFileTimeToFileTime(const FILETIME& ftLocal)
191{
192 ThrowIfZero(ftLocal);
193 FILETIME ft;
194 if (!::LocalFileTimeToFileTime(&ftLocal, &ft))
195 ThrowLastError("LocalFileTimeToFileTime");
196 return ft;
197}
198
199SYSTEMTIME FileTimeToSystemTime(const FILETIME& ft)
200{

Callers 4

USTimeToFiletimeMethod · 0.85
MakeFileTimeFunction · 0.85
ReadLocalTimeMsFunction · 0.85
ReadLocalTimeFunction · 0.85

Calls 2

ThrowIfZeroFunction · 0.85
ThrowLastErrorFunction · 0.85

Tested by

no test coverage detected