SMBIOS_FIRMWARE_LANGUAGE_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _SMBIOS_H
#include <pshpack1.h>

typedef struct _SMBIOS_FIRMWARE_LANGUAGE_INFORMATION
{
    SMBIOS_HEADER Header;
    // 2.0+
    UCHAR InstallableLanguages;

    union
    {
        struct
        {
            // 2.1+
            UCHAR AbbreviatedFormat : 1;
            UCHAR Reserved : 7;
        };

        UCHAR Value;
    } Flags;

    UCHAR Reserved[15];
    UCHAR CurrentLanguage; // string
} SMBIOS_FIRMWARE_LANGUAGE_INFORMATION, *PSMBIOS_FIRMWARE_LANGUAGE_INFORMATION;

#include <poppack.h>
#endif

View code on GitHub

No description available.