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

jnr.ffi.provider.jffi.LocalVariable Maven / Gradle / Ivy

There is a newer version: 2.2.16
Show newest version
package jnr.ffi.provider.jffi;

/**
 *
 */
class LocalVariable {
    final Class type;
    final int idx;

    public LocalVariable(Class type, int idx) {
        this.type = type;
        this.idx = idx;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy