RTL_OSVERSIONINFOEX3 - NtDoc

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

// rev
typedef struct _RTL_OSVERSIONINFOEX3
{
    ULONG OSVersionInfoSize;
    ULONG MajorVersion;
    ULONG MinorVersion;
    ULONG BuildNumber;
    union
    {
        ULONG PlatformId;
        ULONG QfeNumber;
    };
    union
    {
        WCHAR CSDVersion[128];
        WCHAR LayerAttrib[128];
    };
    USHORT ServicePackMajor;
    USHORT ServicePackMinor;
    USHORT SuiteMask;
    UCHAR ProductType;
    UCHAR Reserved;
    ULONG SuiteMaskEx;
    ULONG Reserved2;
    union
    {
        USHORT RawInput16;
        USHORT LayerNumber : 12;
        USHORT AttribSelector : 4;
    } Input;
    USHORT LayerCount;
    ULONG LayerFlags;
} RTL_OSVERSIONINFOEX3, *PRTL_OSVERSIONINFOEX3;

#endif

View code on GitHub

NtDoc

No description available.