NtQuerySystemTime

[DllImport("ntdll.dll", SetLastError = true)]
public static extern void NtQuerySystemTime(
   out LARGE_INTEGER SystemTime
);

Microsoft documentation: Linkarrow-up-right

Last updated