SMBIOS_ADDITIONAL_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_ADDITIONAL_ENTRY
{
    UCHAR Length;
    USHORT ReferencedHandle;
    UCHAR ReferencedOffset;
    UCHAR String; // string
    UCHAR Value[ANYSIZE_ARRAY];
} SMBIOS_ADDITIONAL_ENTRY, *PSMBIOS_ADDITIONAL_ENTRY;

#include <poppack.h>
#endif

View code on GitHub

No description available.