com.github.unidbg.ios.Section Maven / Gradle / Ivy
The newest version!
package com.github.unidbg.ios;
class Section {
final long addr;
final long size;
Section(long addr, long size) {
this.addr = addr;
this.size = size;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy