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

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

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

    public NDR_record NDR;
    public int retCode;
    public int addressLow;
    public int addressHigh;
    public int sizeLow;
    public int sizeHigh;
    public int nestingDepth;
    public int infoCnt = 7;
    public VmRegionSubMapShortInfo64 info;

    @Override
    protected List getFieldOrder() {
        return Arrays.asList("NDR", "retCode", "addressLow", "addressHigh", "sizeLow", "sizeHigh", "nestingDepth", "infoCnt", "info");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy