RtlGetVersion function ntdll

NTSTATUS RtlGetVersion(
  1. Pointer<OSVERSIONINFO> lpVersionInformation
)

Gets version information about the currently running operating system.

To learn more, see learn.microsoft.com/windows/win32/DevNotes/rtlgetversion.

Implementation

@pragma('vm:prefer-inline')
NTSTATUS RtlGetVersion(Pointer<OSVERSIONINFO> lpVersionInformation) =>
    NTSTATUS(_RtlGetVersion(lpVersionInformation));