Skip to content

Correct minor typos and add new dynamically loadable VFD type #221

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion hdf5-sys/src/h5pl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ mod hdf5_1_8_15 {
H5PL_TYPE_ERROR = -1,
H5PL_TYPE_FILTER = 0,
#[cfg(feature = "1.12.0")]
H5PL_VOL,
H5PL_TYPE_VOL,
#[cfg(feature = "1.13.0")]
H5PL_TYPE_VFD,
#[cfg(feature = "1.12.0")]
H5PL_TYPE_NONE,
}
Expand Down
2 changes: 1 addition & 1 deletion hdf5-sys/src/h5vl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub struct H5VL_class_t {
pub attr_cls: H5VL_attr_class_t,
pub dataset_cls: H5VL_dataset_class_t,
pub datatype_cls: H5VL_datatype_class_t,
pub file_cl: H5VL_file_class_t,
pub file_cls: H5VL_file_class_t,
pub group_cls: H5VL_group_class_t,
pub link_cls: H5VL_link_class_t,
pub object_cls: H5VL_object_class_t,
Expand Down