13 lines
240 B
C++
13 lines
240 B
C++
#pragma once
|
|
|
|
#include <ctime>
|
|
|
|
struct RuntimeClockSnapshot
|
|
{
|
|
double utcTimeSeconds = 0.0;
|
|
double utcOffsetSeconds = 0.0;
|
|
};
|
|
|
|
RuntimeClockSnapshot GetRuntimeClockSnapshot();
|
|
RuntimeClockSnapshot MakeRuntimeClockSnapshot(std::time_t now);
|