SMBIOS_ENTRY_POINT_3_0 - NtDoc

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

typedef struct _SMBIOS_ENTRY_POINT_3_0
{
    UCHAR Signature[5];             // _SM3_ (ASCII)
    UCHAR Checksum;
    UCHAR Length;
    UCHAR MajorVersion;
    UCHAR MinorVersion;
    UCHAR DocumentRevision;
    UCHAR EntryPointRevision;
    UCHAR Reserved;
    ULONG MaximumStructureSize;
    ULONGLONG StructureTableAddress;
} SMBIOS_ENTRY_POINT_3_0, *PSMBIOS_ENTRY_POINT_3_0;

#include <poppack.h>
#endif

View code on GitHub

No description available.