mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
10 lines
304 B
C#
10 lines
304 B
C#
namespace Cosmos.Core
|
|
{
|
|
internal unsafe struct DataLookupEntry
|
|
{
|
|
public void* DataBlock;
|
|
public uint Size;
|
|
// Refcount will be UInt32.MaxValue (0xFFFFFFFF) in case the block has been freed, but the memory hasn't been compacted yet
|
|
public uint Refcount;
|
|
}
|
|
}
|