SMBIOS_PROCESSOR_SPECIFIC_BLOCK - NtDoc

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

typedef struct _SMBIOS_PROCESSOR_SPECIFIC_BLOCK
{
    UCHAR Length;
    UCHAR Type;   // SMBIOS_PROCESSOR_ARCHITECTURE_TYPE_*
    UCHAR Data[ANYSIZE_ARRAY];
} SMBIOS_PROCESSOR_SPECIFIC_BLOCK, *PSMBIOS_PROCESSOR_SPECIFIC_BLOCK;

#include <poppack.h>
#endif

View code on GitHub

No description available.