com.github.unidbg.ios.struct.kernel.VmCopyReply 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 VmCopyReply extends UnidbgStructure {
public VmCopyReply(Pointer p) {
super(p);
}
public NDR_record NDR;
public int retCode;
@Override
protected List getFieldOrder() {
return Arrays.asList("NDR", "retCode");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy