diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-06-29 17:28:10 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2012-06-29 17:28:10 (GMT) |
commit | 358cac8ec8cd1989bf0b47d255751c6d4130c0fc (patch) | |
tree | 50907abf9364fed3f8067de4f7064bc9a4f66ced /src/H5VLpublic.h | |
parent | 5f34b5703d93fd795f136054a191008affb80011 (diff) | |
download | hdf5-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.h | 6 |
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; |