SMBIOS_CACHE_ULONG - NtDoc

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

typedef union _SMBIOS_CACHE_ULONG
{
    struct
    {
        ULONG Size : 31;
        ULONG Granularity : 1; // 0 = 1K, 1 = 64K
    };

    ULONG Value;
} SMBIOS_CACHE_ULONG;

#include <poppack.h>
#endif

View code on GitHub

No description available.