BOOLEAN
RtlTimeFieldsToTime(
IN PTIME_FIELDS TimeFields,
IN PLARGE_INTEGER Time
);
RtlTimeFieldsToTime converts TIME_FIELDS information to a system time value.
typedef struct TIME_FIELDS { CSHORT Year; CSHORT Month; CSHORT Day; CSHORT Hour; CSHORT Minute; CSHORT Second; CSHORT Milliseconds; CSHORT Weekday; } TIME_FIELDS;
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.
ExLocalTimeToSystemTime, ExSystemTimeToLocalTime, KeQuerySystemTime, RtlTimeToTimeFields