libhdf5-sys 0.2.0

Native bindings to the HDF5 library
1
2
3
4
5
6
7
8
9
use libc::c_int;

use h5::herr_t;

#[cfg(hdf5_1_8_15)]
extern {
    pub fn H5PLget_loading_state(plugin_flags: *mut c_int) -> herr_t;
    pub fn H5PLset_loading_state(plugin_flags: *mut c_int) -> herr_t;
}