com.github.unidbg.ios.struct.kernel.VprocMigLookupRequest Maven / Gradle / Ivy
The newest version!
package com.github.unidbg.ios.struct.kernel;
import com.github.unidbg.debugger.ida.Utils;
import com.github.unidbg.pointer.UnidbgStructure;
import com.sun.jna.Pointer;
import java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.List;
public class VprocMigLookupRequest extends UnidbgStructure {
public VprocMigLookupRequest(Pointer p) {
super(p);
}
public NDR_record NDR;
public byte[] serviceName = new byte[128];
public String getServiceName() {
return Utils.readCString(ByteBuffer.wrap(serviceName));
}
@Override
protected List getFieldOrder() {
return Arrays.asList("NDR", "serviceName");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy