SMBIOS_CACHE_USHORT - 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_USHORT
{
    struct
    {
        USHORT Size : 15;
        USHORT Granularity : 1; // 0 = 1K, 1 = 64K
    };

    USHORT Value;
} SMBIOS_CACHE_USHORT;

#include <poppack.h>
#endif

View code on GitHub

No description available.