com.github.unidbg.ios.struct.kernel.MachPortsLookupReply Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unidbg Show documentation
Show all versions of unidbg Show documentation
Allows you to emulate an Android ARM32 and/or ARM64 native library
package com.github.unidbg.ios.struct.kernel;
import com.github.unidbg.pointer.UnicornStructure;
import com.sun.jna.Pointer;
import java.util.Arrays;
import java.util.List;
public class MachPortsLookupReply extends UnicornStructure {
public MachPortsLookupReply(Pointer p) {
super(p);
}
public int retCode;
public Pointer outPort;
public int ret;
public int mask;
public int reserved1;
public int reserved2;
public int cnt;
@Override
protected List getFieldOrder() {
return Arrays.asList("retCode", "outPort", "ret", "mask", "reserved1", "reserved2", "cnt");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy