summaryrefslogtreecommitdiffstats
path: root/src/H5Odtype.c
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2020-08-09 23:13:42 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2020-08-09 23:13:42 (GMT)
commitf863d4f970c2f54298a69f95bb6a15e710e1ed75 (patch)
tree18674b21192be6d7c36b950f70de128b3759f23a /src/H5Odtype.c
parent0d69520c70b2ec541af4196eef344bac89f6ebe2 (diff)
downloadhdf5-f863d4f970c2f54298a69f95bb6a15e710e1ed75.zip
hdf5-f863d4f970c2f54298a69f95bb6a15e710e1ed75.tar.gz
hdf5-f863d4f970c2f54298a69f95bb6a15e710e1ed75.tar.bz2
Addition to HDFFV-10591
Description Added missing parameter description and improved format. Platforms tested: Linux/64 (jelly)
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 6eaaae9..92a8ee3 100644
--- a/src/H5Odtype.c
+++ b/src/H5Odtype.c
@@ -1094,9 +1094,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