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