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