summaryrefslogtreecommitdiffstats
path: root/src/H5Dpublic.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-12-15 10:05:00 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-12-15 10:05:00 (GMT)
commit9ae9b3ef513613bb2fca15f96461a156148c2627 (patch)
tree244740b497cbfa9438008fb8964cc0c48a523487 /src/H5Dpublic.h
parentbc0a08d997b1096e0fc51d6d5d52febc655f069d (diff)
downloadhdf5-9ae9b3ef513613bb2fca15f96461a156148c2627.zip
hdf5-9ae9b3ef513613bb2fca15f96461a156148c2627.tar.gz
hdf5-9ae9b3ef513613bb2fca15f96461a156148c2627.tar.bz2
Moved the native VOL connector's optional enums to the
public headers and renamed to include native/NATIVE in the name.
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r--src/H5Dpublic.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h
index a1ccda0..921974d 100644
--- a/src/H5Dpublic.h
+++ b/src/H5Dpublic.h
@@ -104,6 +104,16 @@ typedef enum H5D_vds_view_t {
/* Callback for H5Pset_append_flush() in a dataset access property list */
typedef herr_t (*H5D_append_cb_t)(hid_t dataset_id, hsize_t *cur_dims, void *op_data);
+/* Enumeration for native VOL connector dataset optional VOL operations */
+typedef enum H5VL_native_dataset_optional_t {
+ H5VL_NATIVE_DATASET_FORMAT_CONVERT, /* H5Dformat_convert (internal) */
+ H5VL_NATIVE_DATASET_GET_CHUNK_INDEX_TYPE, /* H5Dget_chunk_index_type */
+ H5VL_NATIVE_DATASET_GET_CHUNK_STORAGE_SIZE, /* H5Dget_chunk_storage_size */
+ H5VL_NATIVE_DATASET_CHUNK_READ, /* H5Dchunk_read */
+ H5VL_NATIVE_DATASET_CHUNK_WRITE, /* H5Dchunk_write */
+} H5VL_native_dataset_optional_t;
+
+
/********************/
/* Public Variables */
/********************/