diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-10-28 06:31:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-10-28 06:31:28 (GMT) |
commit | 8ee361f185a8e95e1b7665703946796438ba5237 (patch) | |
tree | acd5afc178e555b9ac0347b11be3e505c663531f /src/H5VLpublic.h | |
parent | 50dd616eb5fda775d3b283be14229698eb937df2 (diff) | |
download | hdf5-8ee361f185a8e95e1b7665703946796438ba5237.zip hdf5-8ee361f185a8e95e1b7665703946796438ba5237.tar.gz hdf5-8ee361f185a8e95e1b7665703946796438ba5237.tar.bz2 |
Move all callback-related routines into the callback source file, standardizing
their coding style
Diffstat (limited to 'src/H5VLpublic.h')
-rw-r--r-- | src/H5VLpublic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h index 2daa5d4..3cf3c79 100644 --- a/src/H5VLpublic.h +++ b/src/H5VLpublic.h @@ -425,8 +425,6 @@ H5_DLL herr_t H5VLunregister_plugin(hid_t plugin_id); /* Helper routines for VOL plugin authors */ H5_DLL herr_t H5VLcmp_plugin_cls(int *cmp, hid_t plugin_id1, hid_t plugin_id2); -H5_DLL herr_t H5VLcmp_plugin_info(int *cmp, hid_t plugin_id, const void *info1, - const void *info2); /* Public wrappers for generic callbacks */ @@ -434,6 +432,8 @@ H5_DLL herr_t H5VLinitialize(hid_t plugin_id, hid_t vipl_id); H5_DLL herr_t H5VLterminate(hid_t plugin_id); H5_DLL herr_t H5VLget_cap_flags(hid_t plugin_id, unsigned *cap_flags); H5_DLL herr_t H5VLcopy_plugin_info(hid_t plugin_id, void **dst_vol_info, void *src_vol_info); +H5_DLL herr_t H5VLcmp_plugin_info(int *cmp, hid_t plugin_id, const void *info1, + const void *info2); H5_DLL herr_t H5VLfree_plugin_info(hid_t plugin_id, void *vol_info); H5_DLL void *H5VLget_object(void *obj, hid_t plugin_id); H5_DLL herr_t H5VLget_wrap_ctx(void *obj, hid_t plugin_id, void **wrap_ctx); |