Cosmos/source/Cosmos.Core.Memory/GlobalInformationTable.cs
2016-06-10 11:42:30 -04:00

14 lines
319 B
C#

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