com.github.unidbg.ios.struct.kernel.MachPortLimits 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.Collections;
import java.util.List;
public class MachPortLimits extends UnidbgStructure {
public MachPortLimits(Pointer p) {
super(p);
}
public int mpl_qlimit; /* number of msgs */
@Override
protected List getFieldOrder() {
return Collections.singletonList("mpl_qlimit");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy