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

15 lines
359 B
C#

namespace Cosmos.Core
{
// The DataLookupTable (DLT) basically is a linked list.
internal unsafe struct DataLookupTable
{
public const int EntriesPerTable = 170;
public DataLookupTable* Previous;
public DataLookupTable* Next;
public DataLookupEntry* Entries;
public void* FirstByteAfterTable;
}
}