summaryrefslogtreecommitdiffstats
path: root/src/H5Odtype.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2020-08-11 11:36:41 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2020-08-11 11:36:41 (GMT)
commit4083be1ff20b66ee75b32df141fea5e36d771ced (patch)
treeb8d59f8bf79a4228367fe9d6b34a581268d5ee34 /src/H5Odtype.c
parent98c184e1306196e47e4bacdca5ac54c808c565bc (diff)
parent1008afc457e288d4f7186225d859c5a8fe361d9f (diff)
downloadhdf5-4083be1ff20b66ee75b32df141fea5e36d771ced.zip
hdf5-4083be1ff20b66ee75b32df141fea5e36d771ced.tar.gz
hdf5-4083be1ff20b66ee75b32df141fea5e36d771ced.tar.bz2
Merge remote-tracking branch 'origin/develop' into namespace_cleanup_01
Diffstat (limited to 'src/H5Odtype.c')
-rw-r--r--src/H5Odtype.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/H5Odtype.c b/src/H5Odtype.c
index 3ad53a4..80dbae9 100644
--- a/src/H5Odtype.c
+++ b/src/H5Odtype.c
@@ -1093,9 +1093,12 @@ done:
with the decoded information
USAGE
void *H5O__dtype_decode(f, mesg_flags, p)
- H5F_t *f; IN: pointer to the HDF5 file struct
+ H5F_t *f; IN: pointer to the HDF5 file struct
+ H5O_t *open_oh; IN: pointer to the object header
unsigned mesg_flags; IN: Message flags to influence decoding
- const uint8 *p; IN: the raw information buffer
+ unsigned *ioflags; IN/OUT: flags for decoding
+ size_t p_size; IN: size of buffer *p
+ const uint8_t *p; IN: the raw information buffer
RETURNS
Pointer to the new message in native order on success, NULL on failure
DESCRIPTION