MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / Win32FileTimeToTime

Function Win32FileTimeToTime

Engine/source/core/util/timeClass.h:272–277  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270}
271
272inline Time Win32FileTimeToTime(U32 low,U32 high)
273{
274 // Converts Win32 "file" time, 100 nanosecond intervals since 00:00:00 UTC, January 1, 1601
275 S64 t = (((S64)high) << 32) + low;
276 return Time(t / 100 + TORQUE_CONSTANT_S64(5049120960000000));
277}
278
279
280} // Namespace

Callers 1

_CopyStatAttributesFunction · 0.85

Calls 1

TimeClass · 0.85

Tested by

no test coverage detected