mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-10-28 06:10:02 +08:00
refactor: more accurate representation
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user