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