refactor: more accurate representation

This commit is contained in:
Liam
2025-10-14 23:10:01 -04:00
parent 56e96628d5
commit e925821e72

View File

@@ -15,12 +15,11 @@ unsafe impl<D: 'static> Pod for HashAllocatedBlob<D> {}
#[repr(C)]
pub struct RTL_SRWLOCK
{
pub data: Pointer64<()>,
}
#[repr(C)]
pub struct HashBucket<D, K> {
pub lock: RTL_SRWLOCK, // 0x0000
pub lock: Pointer64<RTL_SRWLOCK>, // 0x0000
pub first: Pointer64<HashFixedDataInternal<D, K>>, // 0x0008
pub first_uncommitted: Pointer64<HashFixedDataInternal<D, K>>, // 0x0010
}