#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;
View code on GitHub
No description available.