#ifndef _NTRTL_H
NTSYSAPI
VOID
NTAPI
RtlSecondsSince1980ToTime(
_In_ ULONG ElapsedSeconds,
_Out_ PLARGE_INTEGER Time
);
View code on GitHub// ntifs.h
NTSYSAPI VOID RtlSecondsSince1980ToTime(
[in] ULONG ElapsedSeconds,
[out] PLARGE_INTEGER Time
);
View the official Windows Driver Kit DDI referenceThis function is documented in Windows Driver Kit.
The RtlSecondsSince1980ToTime routine converts the elapsed time, in seconds, since the beginning of 1980 to an absolute system time value.
ElapsedSeconds [in]Number of seconds from midnight, December 31, 1979, to the current date and time.
Time [out]Pointer to a caller-allocated variable that receives the corresponding current system time.
None
The absolute system time is a LARGE_INTEGER value, accurate to 100-nanosecond resolution, assuming an accurate hardware clock. The basis for system time is the start of 1601. The value returned by RtlSecondsSince1980ToTime is truncated to one-millisecond resolution.
For more information about converting time values, see Data Conversions.