summaryrefslogtreecommitdiffstats
path: root/src/H5Apublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-02-08 18:50:21 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-02-08 18:50:21 (GMT)
commit494f46639dfdd646cb54235ef9d8a3b0cf75523c (patch)
tree0a76ca21742e73ab36f76634a3872f3c9feee303 /src/H5Apublic.h
parent1e5e6baad117093c66c922f157dade58b2716f89 (diff)
downloadhdf5-494f46639dfdd646cb54235ef9d8a3b0cf75523c.zip
hdf5-494f46639dfdd646cb54235ef9d8a3b0cf75523c.tar.gz
hdf5-494f46639dfdd646cb54235ef9d8a3b0cf75523c.tar.bz2
[svn-r13272] Description:
Checkpoint attribute creation order coding on "by index" routines. Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Apublic.h')
-rw-r--r--src/H5Apublic.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/H5Apublic.h b/src/H5Apublic.h
index dee7644..0bcf8d6 100644
--- a/src/H5Apublic.h
+++ b/src/H5Apublic.h
@@ -42,7 +42,7 @@ typedef herr_t (*H5A_operator_t)(hid_t location_id/*in*/,
/* Public function prototypes */
H5_DLL hid_t H5Acreate(hid_t loc_id, const char *name, hid_t type_id,
- hid_t space_id, hid_t plist_id);
+ hid_t space_id, hid_t plist_id);
H5_DLL hid_t H5Aopen_name(hid_t loc_id, const char *name);
H5_DLL hid_t H5Aopen_idx(hid_t loc_id, unsigned idx);
H5_DLL herr_t H5Awrite(hid_t attr_id, hid_t type_id, const void *buf);
@@ -54,9 +54,11 @@ 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 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);
+ void *op_data);
H5_DLL herr_t H5Adelete(hid_t loc_id, const char *name);
/* Functions and variables defined for compatibility with previous versions