AMemoryMapInfo.cs 530 B

12345678910111213141516171819
  1. namespace ChocolArm64.Memory
  2. {
  3. public struct AMemoryMapInfo
  4. {
  5. public long Position { get; private set; }
  6. public long Size { get; private set; }
  7. public int Type { get; private set; }
  8. public AMemoryPerm Perm { get; private set; }
  9. public AMemoryMapInfo(long Position, long Size, int Type, AMemoryPerm Perm)
  10. {
  11. this.Position = Position;
  12. this.Size = Size;
  13. this.Type = Type;
  14. this.Perm = Perm;
  15. }
  16. }
  17. }