SMBIOS_VOLTAGE_PROBE_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_VOLTAGE_PROBE_INFORMATION
{
    SMBIOS_HEADER Header;
    // 2.2+
    UCHAR Description; // string

    union
    {
        struct
        {
            UCHAR Location : 5; // SMBIOS_VOLTAGE_PROBE_LOCATION_*
            UCHAR Status : 3;   // SMBIOS_PROBE_STATUS_*
        };

        UCHAR Value;
    } LocationAndStatus;

    USHORT MaximumValue;
    USHORT MinimumValue;
    USHORT Resolution;
    USHORT Tolerance;
    USHORT Accuracy;
    ULONG OEMDefined;
    USHORT NominalValue;
} SMBIOS_VOLTAGE_PROBE_INFORMATION, *PSMBIOS_VOLTAGE_PROBE_INFORMATION;

#include <poppack.h>
#endif

View code on GitHub

No description available.