Cosmos/source/Cosmos.Core.Memory/Old/GlobalInformationTable.cs
2016-06-17 19:35:20 -04:00

14 lines
323 B
C#

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