diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-14 19:32:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-02-14 19:32:01 (GMT) |
commit | 37a57858d5cf90799a637b80c5bf5d63dcc40fc7 (patch) | |
tree | 2b050d1679475077d814439aa7e5e25fe547e68c /src/H5Apublic.h | |
parent | efc45d5aab2fbdbad1f7bf494db91f9257a3285e (diff) | |
download | hdf5-37a57858d5cf90799a637b80c5bf5d63dcc40fc7.zip hdf5-37a57858d5cf90799a637b80c5bf5d63dcc40fc7.tar.gz hdf5-37a57858d5cf90799a637b80c5bf5d63dcc40fc7.tar.bz2 |
[svn-r13304] Description:
Fix new API routines to use same pattern of arguments for specifying an
object as the new H5G/L/O API routines.
Tested on:
Linux/32 2.6 (chicago)
Diffstat (limited to 'src/H5Apublic.h')
-rw-r--r-- | src/H5Apublic.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/H5Apublic.h b/src/H5Apublic.h index bec794c..757f320 100644 --- a/src/H5Apublic.h +++ b/src/H5Apublic.h @@ -54,11 +54,12 @@ H5_DLL hid_t H5Aget_create_plist(hid_t attr_id); H5_DLL ssize_t H5Aget_name(hid_t attr_id, size_t buf_size, char *buf); H5_DLL hsize_t H5Aget_storage_size(hid_t attr_id); H5_DLL herr_t H5Aget_info(hid_t loc_id, const char *name, H5A_info_t *ainfo /*out*/); -H5_DLL herr_t H5Aget_info_by_idx(hid_t loc_id, H5_index_t idx_type, - H5_iter_order_t order, hsize_t n, H5A_info_t *ainfo /*out*/); -H5_DLL ssize_t H5Aget_name_by_idx(hid_t loc_id, +H5_DLL herr_t H5Aget_info_by_idx(hid_t loc_id, const char *obj_name, H5_index_t idx_type, H5_iter_order_t order, hsize_t n, - char *name /*out*/, size_t size); + H5A_info_t *ainfo /*out*/, hid_t lapl_id); +H5_DLL ssize_t H5Aget_name_by_idx(hid_t loc_id, const char *obj_name, + H5_index_t idx_type, H5_iter_order_t order, hsize_t n, + char *name /*out*/, size_t size, hid_t lapl_id); H5_DLL herr_t H5Arename(hid_t loc_id, const char *old_name, const char *new_name); H5_DLL herr_t H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op, void *op_data); |