All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.unidbg.ios.struct.kernel.HostInfoReply 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 HostInfoReply extends UnidbgStructure {

    public HostInfoReply(Pointer p) {
        super(p);
    }

    public NDR_record NDR;
    public int retCode;
    public int host_info_outCnt = 8;
    public HostInfo host_info_out;

    @Override
    protected List getFieldOrder() {
        return Arrays.asList("NDR", "retCode", "host_info_outCnt", "host_info_out");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy