#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;
View code on GitHub
No description available.