Cosmos/source/Cosmos.Core.Memory/GlobalInformationTable.cs
2016-06-10 13:01:20 -04:00

11 lines
249 B
C#

using System.Runtime.InteropServices;
namespace Cosmos.Core
{
[StructLayout(LayoutKind.Explicit)]
internal unsafe struct GlobalInformationTable
{
[FieldOffset(0)]
public DataLookupTable* FirstDataLookupTable;
}
}