#ifndef _NTRTL_H
NTSYSAPI
BOOLEAN
NTAPI
RtlTimeFieldsToTime(
_In_ PTIME_FIELDS TimeFields, // Weekday is ignored
_Out_ PLARGE_INTEGER Time
);
View code on GitHub
// wdm.h
NTSYSAPI BOOLEAN RtlTimeFieldsToTime(
[in] PTIME_FIELDS TimeFields,
[out] PLARGE_INTEGER Time
);
View the official Windows Driver Kit DDI reference
No description available.
The RtlTimeFieldsToTime routine converts TIME_FIELDS information to a system time value.
TimeFields
[in]Pointer to a structure of type TIME_FIELDS that contains the time information to be converted.
Time
[out]Pointer to a buffer, which is to contain the converted system time value as a large integer.
RtlTimeFieldsToTime returns TRUE if the input TimeFields data was successfully converted.
RtlTimeFieldsToTime ignores the Weekday value in TimeFields.
Callers of RtlTimeFieldsToTime can be running at any IRQL if both input buffers are resident.
This function is documented in Windows Driver Kit.
Function RtlTimeFieldsToTime
converts user-readable structure TIME_FIELDS
to 64-bit integer.
Pointer to TIME_FIELDS
structure containing time to convert.
Pointer to LARGE_INTEGER
receiving converted time.
See also opposite function RtlTimeToTimeFields
.