SMBIOS_OUT_OF_BAND_REMOTE_ACCESS_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_OUT_OF_BAND_REMOTE_ACCESS_INFORMATION
{
    SMBIOS_HEADER Header;
    // 2.2+
    UCHAR Manufacturer; // string

    union
    {
        struct
        {
            UCHAR InboundEnabled : 1;
            UCHAR OutboundEnabled : 1;
            UCHAR Reserved : 6;
        };

        UCHAR Value;
    } Connections;
} SMBIOS_OUT_OF_BAND_REMOTE_ACCESS_INFORMATION, *PSMBIOS_OUT_OF_BAND_REMOTE_ACCESS_INFORMATION;

#include <poppack.h>
#endif

View code on GitHub

No description available.