2018-02-05 00:08:20 +01:00
|
|
|
namespace ChocolArm64.Memory
|
|
|
|
{
|
2018-02-28 00:45:07 +01:00
|
|
|
public class AMemoryMapInfo
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
public long Position { get; private set; }
|
|
|
|
public long Size { get; private set; }
|
|
|
|
public int Type { get; private set; }
|
2018-02-10 01:13:18 +01:00
|
|
|
public int Attr { get; private set; }
|
2018-02-05 00:08:20 +01:00
|
|
|
|
|
|
|
public AMemoryPerm Perm { get; private set; }
|
|
|
|
|
2018-02-10 01:13:18 +01:00
|
|
|
public AMemoryMapInfo(long Position, long Size, int Type, int Attr, AMemoryPerm Perm)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
|
|
|
this.Position = Position;
|
|
|
|
this.Size = Size;
|
|
|
|
this.Type = Type;
|
2018-02-10 01:13:18 +01:00
|
|
|
this.Attr = Attr;
|
2018-02-05 00:08:20 +01:00
|
|
|
this.Perm = Perm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|