Cosmos/source/Cosmos.Core/DataLookupEntry.cs
2015-07-26 18:37:09 -04:00

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;
}
}