com.github.unidbg.ios.struct.kernel.MachMsgBody 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 MachMsgBody extends UnidbgStructure {
public MachMsgBody(Pointer p) {
super(p);
}
public int msgh_descriptor_count;
@Override
protected List getFieldOrder() {
return Collections.singletonList("msgh_descriptor_count");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy