com.github.unidbg.ios.struct.kernel.VmRemapReply Maven / Gradle / Ivy
The newest version!
package com.github.unidbg.ios.struct.kernel;
import com.github.unidbg.pointer.UnidbgStructure;
import com.sun.jna.Pointer;
import java.util.Arrays;
import java.util.List;
public class VmRemapReply extends UnidbgStructure {
public VmRemapReply(Pointer p) {
super(p);
}
public MachMsgBody body;
public int pad;
public int retCode;
public int target_address1;
public int target_address2;
public int cur_protection;
public int max_protection;
@Override
protected List getFieldOrder() {
return Arrays.asList("body", "pad", "retCode", "target_address1", "target_address2", "cur_protection", "max_protection");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy