summaryrefslogtreecommitdiffstats
path: root/src/H5Cpublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-01-20 19:37:52 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-01-20 19:37:52 (GMT)
commitb23133fabb5d2edd34df580e4dd993cc48f0d9cf (patch)
treeab7f3cc1c1ed53f501822c9fc704dd451784e2d1 /src/H5Cpublic.h
parenta4e47e25eb1fe1fc27846b20a7965f99a9bed220 (diff)
downloadhdf5-b23133fabb5d2edd34df580e4dd993cc48f0d9cf.zip
hdf5-b23133fabb5d2edd34df580e4dd993cc48f0d9cf.tar.gz
hdf5-b23133fabb5d2edd34df580e4dd993cc48f0d9cf.tar.bz2
[svn-r159] Changed variables named "template" to "tid" to avoid name clash with C++
keyword.
Diffstat (limited to 'src/H5Cpublic.h')
-rw-r--r--src/H5Cpublic.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/H5Cpublic.h b/src/H5Cpublic.h
index e3cef4d..a796273 100644
--- a/src/H5Cpublic.h
+++ b/src/H5Cpublic.h
@@ -42,33 +42,33 @@ extern "C" {
/* Public functions */
hid_t H5Ccreate(H5C_class_t type);
- herr_t H5Cclose(hid_t template);
- hid_t H5Ccopy(hid_t template);
+ herr_t H5Cclose(hid_t tid);
+ hid_t H5Ccopy(hid_t tid);
- H5C_class_t H5Cget_class(hid_t template);
+ H5C_class_t H5Cget_class(hid_t tid);
- herr_t H5Cget_version(hid_t template, int *boot /*out */ , int *heap /*out */ ,
+ herr_t H5Cget_version(hid_t tid, int *boot /*out */ , int *heap /*out */ ,
int *freelist /*out */ , int *stab /*out */ ,
int *shhdr /*out */ );
- herr_t H5Cset_userblock(hid_t template, size_t size);
- herr_t H5Cget_userblock(hid_t template, size_t *size);
+ herr_t H5Cset_userblock(hid_t tid, size_t size);
+ herr_t H5Cget_userblock(hid_t tid, size_t *size);
- herr_t H5Cset_sizes(hid_t template, size_t sizeof_addr, size_t sizeof_size);
- herr_t H5Cget_sizes(hid_t template, size_t *sizeof_addr /*out */ ,
+ herr_t H5Cset_sizes(hid_t tid, size_t sizeof_addr, size_t sizeof_size);
+ herr_t H5Cget_sizes(hid_t tid, size_t *sizeof_addr /*out */ ,
size_t *sizeof_size /*out */ );
- herr_t H5Cset_sym_k(hid_t template, int ik, int lk);
- herr_t H5Cget_sym_k(hid_t template, int *ik /*out */ , int *lk /*out */ );
+ herr_t H5Cset_sym_k(hid_t tid, int ik, int lk);
+ herr_t H5Cget_sym_k(hid_t tid, int *ik /*out */ , int *lk /*out */ );
- herr_t H5Cset_istore_k(hid_t template, int ik);
- herr_t H5Cget_istore_k(hid_t template, int *ik /*out */ );
+ herr_t H5Cset_istore_k(hid_t tid, int ik);
+ herr_t H5Cget_istore_k(hid_t tid, int *ik /*out */ );
- herr_t H5Cset_layout(hid_t template, H5D_layout_t layout);
- H5D_layout_t H5Cget_layout(hid_t template);
+ herr_t H5Cset_layout(hid_t tid, H5D_layout_t layout);
+ H5D_layout_t H5Cget_layout(hid_t tid);
- herr_t H5Cset_chunk(hid_t template, int ndims, size_t dim[]);
- int H5Cget_chunk(hid_t template, int max_ndims, size_t dim[] /*out */ );
+ herr_t H5Cset_chunk(hid_t tid, int ndims, size_t dim[]);
+ int H5Cget_chunk(hid_t tid, int max_ndims, size_t dim[] /*out */ );
#ifdef __cplusplus
}