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

Function FileTimeToLocalFileTime

Win32Lib/Win32Lib.cpp:181–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

179}
180
181FILETIME FileTimeToLocalFileTime(const FILETIME& ft)
182{
183 ThrowIfZero(ft);
184 FILETIME ftLocal;
185 if (!::FileTimeToLocalFileTime(&ft, &ftLocal))
186 ThrowLastError("FileTimeToLocalFileTime");
187 return ftLocal;
188}
189
190FILETIME LocalFileTimeToFileTime(const FILETIME& ftLocal)
191{

Callers 5

GetDateTextFunction · 0.85
GetDateTimeTextFunction · 0.85
GetTimeTextFunction · 0.85
FormatDateTimeFunction · 0.85

Calls 2

ThrowIfZeroFunction · 0.85
ThrowLastErrorFunction · 0.85

Tested by

no test coverage detected