diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2022-03-17 14:53:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-17 14:53:19 (GMT) |
commit | 96398e47af98c55e14b81527a354c2f83c370576 (patch) | |
tree | 6cec155318c0550286f7738b712164e163678e43 /src/H5FDdevelop.h | |
parent | 34442f37400b0090cf56179f3851b21d7950f91c (diff) | |
download | hdf5-96398e47af98c55e14b81527a354c2f83c370576.zip hdf5-96398e47af98c55e14b81527a354c2f83c370576.tar.gz hdf5-96398e47af98c55e14b81527a354c2f83c370576.tar.bz2 |
Misc fixes highlighted by the checkposix script (#1499)
Diffstat (limited to 'src/H5FDdevelop.h')
-rw-r--r-- | src/H5FDdevelop.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/H5FDdevelop.h b/src/H5FDdevelop.h index 938f7f6..be3b545 100644 --- a/src/H5FDdevelop.h +++ b/src/H5FDdevelop.h @@ -223,6 +223,9 @@ struct H5FD_t { hbool_t paged_aggr; /* Paged aggregation for file space is enabled or not */ }; +/* VFD initialization function */ +typedef hid_t (*H5FD_init_t)(void); + /********************/ /* Public Variables */ /********************/ @@ -235,7 +238,7 @@ struct H5FD_t { extern "C" { #endif -H5_DLL hid_t H5FDperform_init(hid_t (*)(void)); +H5_DLL hid_t H5FDperform_init(H5FD_init_t op); H5_DLL hid_t H5FDregister(const H5FD_class_t *cls); H5_DLL htri_t H5FDis_driver_registered_by_name(const char *driver_name); H5_DLL htri_t H5FDis_driver_registered_by_value(H5FD_class_value_t driver_value); |