summaryrefslogtreecommitdiffstats
path: root/src/H5Tprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-07-03 20:05:19 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-07-03 20:05:19 (GMT)
commit22d442825b2a57d24e03dfe13d1515a9d09e2cc3 (patch)
treefff9c136647d21f5000c481365a8bd24b84f7de0 /src/H5Tprivate.h
parent513012e673fa2e6feb98ab564c7524298927bbb7 (diff)
downloadhdf5-22d442825b2a57d24e03dfe13d1515a9d09e2cc3.zip
hdf5-22d442825b2a57d24e03dfe13d1515a9d09e2cc3.tar.gz
hdf5-22d442825b2a57d24e03dfe13d1515a9d09e2cc3.tar.bz2
[svn-r8802] Purpose:
Code optimization Description: Set up datatype ID for dataset's datatype on disk. This allows us to avoid repeatedly copying the datatype when an ID is needed. Also, clean up a few warnings in various other places. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.10 (sleipnir) w/parallel Too minor to require h5committest
Diffstat (limited to 'src/H5Tprivate.h')
-rw-r--r--src/H5Tprivate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Tprivate.h b/src/H5Tprivate.h
index 69656ad..48958d8 100644
--- a/src/H5Tprivate.h
+++ b/src/H5Tprivate.h
@@ -71,8 +71,9 @@ H5_DLL size_t H5T_get_size(const H5T_t *dt);
H5_DLL int H5T_cmp(const H5T_t *dt1, const H5T_t *dt2);
H5_DLL herr_t H5T_debug(const H5T_t *dt, FILE * stream);
H5_DLL H5G_entry_t *H5T_entof(H5T_t *dt);
-H5_DLL htri_t H5T_is_immutable(H5T_t *dt);
-H5_DLL htri_t H5T_is_named(H5T_t *dt);
+H5_DLL htri_t H5T_is_immutable(const H5T_t *dt);
+H5_DLL htri_t H5T_is_named(const H5T_t *dt);
+H5_DLL htri_t H5T_is_relocatable(const H5T_t *dt);
H5_DLL H5T_path_t *H5T_path_find(const H5T_t *src, const H5T_t *dst,
const char *name, H5T_conv_t func, hid_t dxpl_id);
H5_DLL hbool_t H5T_path_noop(const H5T_path_t *p);