SMBIOS_STRING_PROPERTY - NtDoc

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

typedef struct _SMBIOS_STRING_PROPERTY
{
    SMBIOS_HEADER Header;
    // 3.5+
    USHORT Identifier;   // SMBIOS_STRING_PROPERTY_ID_*
    UCHAR String;        // string
    USHORT ParentHandle;
} SMBIOS_STRING_PROPERTY, *PSMBIOS_STRING_PROPERTY;

#include <poppack.h>
#endif

View code on GitHub

No description available.