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