#ifndef _NTRTL_H
NTSYSAPI
VOID
NTAPI
RtlTimeToTimeFields(
_In_ PLARGE_INTEGER Time,
_Out_ PTIME_FIELDS TimeFields
);
View code on GitHub
// wdm.h
NTSYSAPI VOID RtlTimeToTimeFields(
[in] PLARGE_INTEGER Time,
[out] PTIME_FIELDS TimeFields
);
View the official Windows Driver Kit DDI reference
No description available.
The RtlTimeToTimeFields routine converts system time into a TIME_FIELDS structure.
Time
[in]Pointer to a buffer containing the absolute system time as a large integer, accurate to 100-nanosecond resolution.
TimeFields
[out]Pointer to a structure of type TIME_FIELDS to contain the returned information.
None
Callers of RtlTimeToTimeFields can be running at any IRQL if both input buffers are resident.
This function is documented in Windows Driver Kit.
Function RtlTimeToTimeFields
converts 64-bit time to user-readable structure TIME_FIELDS
.
Pointer to LARGE_INTEGER
contains time to convert.
Result of call - pointer to TIME_FIELDS
structure.