summaryrefslogtreecommitdiffstats
path: root/src/H5VLpublic.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-11 21:08:58 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-11 21:08:58 (GMT)
commitf8f9dac38a70f525248c3684e612edf1fa31c18a (patch)
tree78a4bedad56a15a08bb463a4ef5d55d5eb47558c /src/H5VLpublic.h
parent0cce1dbca5e3fc11456d6e61d82f992ae85fe6b2 (diff)
downloadhdf5-f8f9dac38a70f525248c3684e612edf1fa31c18a.zip
hdf5-f8f9dac38a70f525248c3684e612edf1fa31c18a.tar.gz
hdf5-f8f9dac38a70f525248c3684e612edf1fa31c18a.tar.bz2
[svn-r22558] add fapl copy & free callbacks to the VOL class as they are needed for VOL info property.
Diffstat (limited to 'src/H5VLpublic.h')
-rw-r--r--src/H5VLpublic.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h
index 35fee4d..add9ee0 100644
--- a/src/H5VLpublic.h
+++ b/src/H5VLpublic.h
@@ -288,6 +288,9 @@ typedef struct H5VL_class_t {
const char *name;
herr_t (*initialize)(void);
herr_t (*terminate)(void);
+ size_t fapl_size;
+ void * (*fapl_copy)(const void *info);
+ herr_t (*fapl_free)(void *info);
H5VL_attr_class_t attr_cls;
H5VL_datatype_class_t datatype_cls;
H5VL_dataset_class_t dataset_cls;