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

org.bytedeco.hdf5.H5L_query_func_t Maven / Gradle / Ivy

// Targeted by JavaCPP version 1.5.3: DO NOT EDIT THIS FILE

package org.bytedeco.hdf5;

import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

import static org.bytedeco.javacpp.presets.javacpp.*;

import static org.bytedeco.hdf5.global.hdf5.*;


/* Callback for querying the link */
/* Returns the size of the buffer needed */
@Properties(inherit = org.bytedeco.hdf5.presets.hdf5.class)
public class H5L_query_func_t extends FunctionPointer {
    static { Loader.load(); }
    /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
    public    H5L_query_func_t(Pointer p) { super(p); }
    protected H5L_query_func_t() { allocate(); }
    private native void allocate();
    public native @Cast("ssize_t") long call(@Cast("const char*") BytePointer link_name, @Const Pointer lnkdata,
    @Cast("size_t") long lnkdata_size, Pointer buf, @Cast("size_t") long buf_size);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy