summaryrefslogtreecommitdiffstats
path: root/src/H5VLpublic.h
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-06-29 17:28:10 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-06-29 17:28:10 (GMT)
commit358cac8ec8cd1989bf0b47d255751c6d4130c0fc (patch)
tree50907abf9364fed3f8067de4f7064bc9a4f66ced /src/H5VLpublic.h
parent5f34b5703d93fd795f136054a191008affb80011 (diff)
downloadhdf5-358cac8ec8cd1989bf0b47d255751c6d4130c0fc.zip
hdf5-358cac8ec8cd1989bf0b47d255751c6d4130c0fc.tar.gz
hdf5-358cac8ec8cd1989bf0b47d255751c6d4130c0fc.tar.bz2
[svn-r22502] implement named datatypes solution in object headers
modify datatype open and get_binary callbacks to be disjoint
Diffstat (limited to 'src/H5VLpublic.h')
-rw-r--r--src/H5VLpublic.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h
index cb9ceac..423eee3 100644
--- a/src/H5VLpublic.h
+++ b/src/H5VLpublic.h
@@ -215,10 +215,8 @@ typedef struct H5VL_attr_class_t {
typedef struct H5VL_datatype_class_t {
void *(*commit)(void *obj, H5VL_loc_params_t loc_params, const char *name, hid_t type_id,
hid_t lcpl_id, hid_t tcpl_id, hid_t tapl_id, hid_t req);
- void *(*open) (void *obj, H5VL_loc_params_t loc_params, const char * name,
- unsigned char *buf, size_t nalloc, hid_t tapl_id, hid_t req);
- ssize_t (*get_size) (void *obj, H5VL_loc_params_t loc_params, const char *name,
- hid_t tapl_id, hid_t req);
+ void *(*open) (void *obj, H5VL_loc_params_t loc_params, const char * name, hid_t tapl_id, hid_t req);
+ ssize_t (*get_binary) (void *obj, unsigned char *buf, size_t size, hid_t req);
herr_t (*close) (void *dt, hid_t req);
}H5VL_datatype_class_t;