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

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

    public MachVmMapReply(Pointer p) {
        super(p);
        setAlignType(ALIGN_NONE);
    }

    public NDR_record NDR;
    public int retCode;
    public long address;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy