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

org.bytedeco.hdf5.H5I_free_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.*;


/*
 * Function for freeing objects. This function will be called with an object
 * ID type number and a pointer to the object. The function should free the
 * object and return non-negative to indicate that the object
 * can be removed from the ID type. If the function returns negative
 * (failure) then the object will remain in the ID type.
 */
@Properties(inherit = org.bytedeco.hdf5.presets.hdf5.class)
public class H5I_free_t extends FunctionPointer {
    static { Loader.load(); }
    /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
    public    H5I_free_t(Pointer p) { super(p); }
    protected H5I_free_t() { allocate(); }
    private native void allocate();
    public native @Cast("herr_t") int call(Pointer arg0);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy