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

com.github.unidbg.ios.struct.attr.FinderInfo Maven / Gradle / Ivy

The newest version!
package com.github.unidbg.ios.struct.attr;

import com.github.unidbg.pointer.UnidbgStructure;
import com.sun.jna.Pointer;

import java.util.Collections;
import java.util.List;

public class FinderInfo extends UnidbgStructure {

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

    public byte[] finderInfo = new byte[32];

    @Override
    protected List getFieldOrder() {
        return Collections.singletonList("finderInfo");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy