#pragma once #include struct RuntimeClockSnapshot { double utcTimeSeconds = 0.0; double utcOffsetSeconds = 0.0; }; RuntimeClockSnapshot GetRuntimeClockSnapshot(); RuntimeClockSnapshot MakeRuntimeClockSnapshot(std::time_t now);