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

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

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

/**
 *
 */
final class DirectMemoryParameterStrategy extends AbstractDirectPointerParameterStrategy {
    static final PointerParameterStrategy INSTANCE = new DirectMemoryParameterStrategy();

    @Override
    public final long address(Object o) {
        return ((DirectMemoryIO) o).address;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy