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

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

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

    public MachMsgBody body;
    public int ret;
    public int code;
    public int status;

    @Override
    protected List getFieldOrder() {
        return Arrays.asList("body", "ret", "code", "status");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy