// ndis.h
typedef union _NDIS_RW_LOCK_REFCOUNT {
ULONG RefCount;
UCHAR cacheLine[16];
} NDIS_RW_LOCK_REFCOUNT;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_RW_LOCK_REFCOUNT union defines attributes of a read/write lock. This struct is opaque to NDIS drivers.
RefCountThis struct is opaque to NDIS drivers.
cacheLineThis struct is opaque to NDIS drivers.