RTL_OSVERSIONINFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

//
// Version
//

/**
 * \brief Basic operating system version information returned by RtlGetVersion.
 *
 * \details This is the RTL equivalent of OSVERSIONINFOW. Callers must set
 * OSVersionInfoSize to sizeof(RTL_OSVERSIONINFO) before calling RtlGetVersion.
 */
// rev
typedef struct _RTL_OSVERSIONINFO
{
    ULONG OSVersionInfoSize;
    ULONG MajorVersion;
    ULONG MinorVersion;
    ULONG BuildNumber;
    ULONG PlatformId;
    WCHAR CSDVersion[128];
} RTL_OSVERSIONINFO, *PRTL_OSVERSIONINFO;

#endif

View code on GitHub

NtDoc

No description available.