SMBIOS_ON_BOARD_DEVICE_ENTRY - NtDoc

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

typedef struct _SMBIOS_ON_BOARD_DEVICE_ENTRY
{
    union
    {
        struct
        {
            UCHAR Type : 7; // SMBIOS_ON_BOARD_DEVICE_TYPE_*
            UCHAR Enabled : 1;
        };

        UCHAR Value;
    } Device;
    UCHAR Description; // string
} SMBIOS_ON_BOARD_DEVICE_ENTRY, *PSMBIOS_ON_BOARD_DEVICE_ENTRY;

#include <poppack.h>
#endif

View code on GitHub

No description available.