summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-12-20 01:41:50 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-12-20 01:41:50 (GMT)
commit9cfe7fd18d01d6fc84ac2e8902c955452b64259d (patch)
tree4318aa257e2661a8af825fe635ad3bc2dcea1ddb /src/H5VLnative.h
parent9fba6e082cefef51f66cf3d2338ecccadbe69fc8 (diff)
downloadhdf5-9cfe7fd18d01d6fc84ac2e8902c955452b64259d.zip
hdf5-9cfe7fd18d01d6fc84ac2e8902c955452b64259d.tar.gz
hdf5-9cfe7fd18d01d6fc84ac2e8902c955452b64259d.tar.bz2
Split the native VOL connector code into multiple files and
moved the attribute code over.
Diffstat (limited to 'src/H5VLnative.h')
-rw-r--r--src/H5VLnative.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/H5VLnative.h b/src/H5VLnative.h
index e1f85f8..d129865 100644
--- a/src/H5VLnative.h
+++ b/src/H5VLnative.h
@@ -85,8 +85,18 @@ typedef int H5VL_native_object_optional_t;
extern "C" {
#endif
+/* Private functions */
H5_DLL hid_t H5VL_native_register(void);
+/* Atrribute callbacks */
+H5_DLL void *H5VL__native_attr_create(void *obj, const H5VL_loc_params_t *loc_params, const char *attr_name, hid_t acpl_id, hid_t aapl_id, hid_t dxpl_id, void **req);
+void *H5VL__native_attr_open(void *obj, const H5VL_loc_params_t *loc_params, const char *attr_name, hid_t aapl_id, hid_t dxpl_id, void **req);
+H5_DLL herr_t H5VL__native_attr_read(void *attr, hid_t dtype_id, void *buf, hid_t dxpl_id, void **req);
+H5_DLL herr_t H5VL__native_attr_write(void *attr, hid_t dtype_id, const void *buf, hid_t dxpl_id, void **req);
+H5_DLL herr_t H5VL__native_attr_get(void *obj, H5VL_attr_get_t get_type, hid_t dxpl_id, void **req, va_list arguments);
+H5_DLL herr_t H5VL__native_attr_specific(void *obj, const H5VL_loc_params_t *loc_params, H5VL_attr_specific_t specific_type, hid_t dxpl_id, void **req, va_list arguments);
+H5_DLL herr_t H5VL__native_attr_optional(void *obj, hid_t dxpl_id, void **req, va_list arguments);
+H5_DLL herr_t H5VL__native_attr_close(void *attr, hid_t dxpl_id, void **req);
#ifdef __cplusplus
}