mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-10-29 01:10:04 +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)]
|
#[repr(C)]
|
||||||
pub struct RTL_SRWLOCK
|
pub struct RTL_SRWLOCK
|
||||||
{
|
{
|
||||||
pub data: Pointer64<()>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub struct HashBucket<D, K> {
|
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: Pointer64<HashFixedDataInternal<D, K>>, // 0x0008
|
||||||
pub first_uncommitted: Pointer64<HashFixedDataInternal<D, K>>, // 0x0010
|
pub first_uncommitted: Pointer64<HashFixedDataInternal<D, K>>, // 0x0010
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user