Cosmos/source/Cosmos.Core/GlobalInformationTable.cs
Matthijs ter Woord 675ce71d10 Ongoing work.
2015-07-31 08:34:28 -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;
}
}