diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-08-02 14:03:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-08-02 14:03:40 (GMT) |
commit | 3df2828991d984455054c4c89af78725549d5d0f (patch) | |
tree | 023b000f69879f6b8541f339ae50096fa7cfb278 /src/H5Tpublic.h | |
parent | e91a21cd3ba963ca6b97b3bfbc1b84c372b52dec (diff) | |
download | hdf5-3df2828991d984455054c4c89af78725549d5d0f.zip hdf5-3df2828991d984455054c4c89af78725549d5d0f.tar.gz hdf5-3df2828991d984455054c4c89af78725549d5d0f.tar.bz2 |
[svn-r8981] Purpose:
Code cleanup
Description:
Various minor tweaks to clean code up and bring it into closer
syncronization with the release branch.
Platforms tested:
FreeBSD 4.10 (sleipnir) w/parallel
h5committested
IRIX64 6.5 (modi4)
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index 7e5f8eb..c4daeb1 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -485,8 +485,8 @@ H5_DLL htri_t H5Tequal(hid_t type1_id, hid_t type2_id); H5_DLL herr_t H5Tlock(hid_t type_id); H5_DLL herr_t H5Tcommit(hid_t loc_id, const char *name, hid_t type_id); H5_DLL htri_t H5Tcommitted(hid_t type_id); -H5_DLL herr_t H5Tencode(hid_t obj_id, unsigned char* buf, size_t* nalloc); -H5_DLL hid_t H5Tdecode(unsigned char* buf); +H5_DLL herr_t H5Tencode(hid_t obj_id, void *buf, size_t *nalloc); +H5_DLL hid_t H5Tdecode(const void *buf); /* Operations defined on compound datatypes */ H5_DLL herr_t H5Tinsert(hid_t parent_id, const char *name, size_t offset, |