diff options
Diffstat (limited to 'src/H5Ostdst.c')
-rw-r--r-- | src/H5Ostdst.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/H5Ostdst.c b/src/H5Ostdst.c index 0186b44..48c8c97 100644 --- a/src/H5Ostdst.c +++ b/src/H5Ostdst.c @@ -38,12 +38,12 @@ static char RcsId[] = "@(#)$Revision$"; #define PABLO_MASK H5O_std_store_mask /* PRIVATE PROTOTYPES */ -static void *H5O_std_store_decode (hdf5_file_t *f, size_t raw_size, const uint8 *p); -static herr_t H5O_std_store_encode (hdf5_file_t *f, size_t size, uint8 *p, +static void *H5O_std_store_decode (H5F_t *f, size_t raw_size, const uint8 *p); +static herr_t H5O_std_store_encode (H5F_t *f, size_t size, uint8 *p, const void *_mesg); static void *H5O_std_store_copy (const void *_mesg, void *_dest); -static size_t H5O_std_store_size (hdf5_file_t *f, const void *_mesg); -static herr_t H5O_std_store_debug (hdf5_file_t *f, const void *_mesg, +static size_t H5O_std_store_size (H5F_t *f, const void *_mesg); +static herr_t H5O_std_store_debug (H5F_t *f, const void *_mesg, FILE *stream, intn indent, intn fwidth); /* This message derives from H5O */ @@ -73,7 +73,7 @@ static hbool_t interface_initialize_g = FALSE; struct with the decoded information USAGE void *H5O_std_store_decode(f, raw_size, p) - hdf5_file_t *f; IN: pointer to the HDF5 file struct + H5F_t *f; IN: pointer to the HDF5 file struct size_t raw_size; IN: size of the raw information buffer const uint8 *p; IN: the raw information buffer RETURNS @@ -84,7 +84,7 @@ static hbool_t interface_initialize_g = FALSE; within this function using malloc() and is returned to the caller. --------------------------------------------------------------------------*/ static void * -H5O_std_store_decode (hdf5_file_t *f, size_t raw_size, const uint8 *p) +H5O_std_store_decode (H5F_t *f, size_t raw_size, const uint8 *p) { H5O_std_store_t *store=NULL; /* New standard storage structure */ @@ -122,7 +122,7 @@ done: Encode a standard data storage message USAGE herr_t H5O_std_store_encode(f, raw_size, p, mesg) - hdf5_file_t *f; IN: pointer to the HDF5 file struct + H5F_t *f; IN: pointer to the HDF5 file struct size_t raw_size; IN: size of the raw information buffer const uint8 *p; IN: the raw information buffer const void *mesg; IN: Pointer to the standard storage struct @@ -133,7 +133,7 @@ done: storage message in the "raw" disk form. --------------------------------------------------------------------------*/ static herr_t -H5O_std_store_encode (hdf5_file_t *f, size_t raw_size, uint8 *p, const void *mesg) +H5O_std_store_encode (H5F_t *f, size_t raw_size, uint8 *p, const void *mesg) { const H5O_std_store_t *store = (const H5O_std_store_t *)mesg; @@ -193,7 +193,7 @@ H5O_std_store_copy (const void *mesg, void *dest) Return the raw message size in bytes USAGE void *H5O_std_store_copy(f, mesg) - hdf5_file_t *f; IN: pointer to the HDF5 file struct + H5F_t *f; IN: pointer to the HDF5 file struct const void *mesg; IN: Pointer to the source standard storage struct RETURNS Size of message on success, FAIL on failure @@ -203,7 +203,7 @@ H5O_std_store_copy (const void *mesg, void *dest) portion of the message). It doesn't take into account alignment. --------------------------------------------------------------------------*/ static size_t -H5O_std_store_size (hdf5_file_t *f, const void *mesg) +H5O_std_store_size (H5F_t *f, const void *mesg) { size_t ret_value; @@ -222,7 +222,7 @@ H5O_std_store_size (hdf5_file_t *f, const void *mesg) Prints debugging information for a standard storage message USAGE void *H5O_std_store_debug(f, mesg, stream, indent, fwidth) - hdf5_file_t *f; IN: pointer to the HDF5 file struct + H5F_t *f; IN: pointer to the HDF5 file struct const void *mesg; IN: Pointer to the source standard storage struct FILE *stream; IN: Pointer to the stream for output data intn indent; IN: Amount to indent information by @@ -234,7 +234,7 @@ H5O_std_store_size (hdf5_file_t *f, const void *mesg) parameter. --------------------------------------------------------------------------*/ static herr_t -H5O_std_store_debug (hdf5_file_t *f, const void *mesg, FILE *stream, +H5O_std_store_debug (H5F_t *f, const void *mesg, FILE *stream, intn indent, intn fwidth) { const H5O_std_store_t *store = (const H5O_std_store_t *)mesg; |