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

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

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

import jnr.ffi.Struct;
import jnr.ffi.provider.ParameterFlags;

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


    @Override
    public long address(Object o) {
        return Struct.getMemory((Struct) o, ParameterFlags.DIRECT).address();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy