com.github.unidbg.ios.struct.SegmentCommand Maven / Gradle / Ivy
The newest version!
package com.github.unidbg.ios.struct;
import com.sun.jna.Pointer;
public abstract class SegmentCommand extends LoadCommand {
public SegmentCommand(Pointer p) {
super(p);
}
public byte[] segname = new byte[16];
public String getSegName() {
return new String(segname).trim();
}
public abstract long getVmAddress();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy