SMBIOS_TPM_DEVICE_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_TPM_DEVICE_INFORMATION
{
    SMBIOS_HEADER Header;
    // 2.6+
    UCHAR VendorID[4];
    UCHAR MajorSpecVersion;
    UCHAR MinorSpecVersion;
    ULONG FirmwareVersion1;
    ULONG FirmwareVersion2;
    UCHAR Description;         // string
    ULONGLONG Characteristics; // SMBIOS_TPM_DEVICE_*
    ULONG OEMDefined;
} SMBIOS_TPM_DEVICE_INFORMATION, *PSMBIOS_TPM_DEVICE_INFORMATION;

#include <poppack.h>
#endif

View code on GitHub

No description available.