summaryrefslogtreecommitdiffstats
path: root/src/H5Oname.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-09-24 16:30:22 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-09-24 16:30:22 (GMT)
commit0f7fcaad25171bd5d4eb8f822d88b5770d9b235d (patch)
tree0e187af66ca6ec2036d56a882133008f46d78fb2 /src/H5Oname.c
parent8a4d8a5b0c7e473566ae9347ac228eaea0490875 (diff)
downloadhdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.zip
hdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.tar.gz
hdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.tar.bz2
[svn-r111] Changed hdf5_file_t to H5F_t, split data struct ito two halves, fixed
problems when opening the same file more than once.
Diffstat (limited to 'src/H5Oname.c')
-rw-r--r--src/H5Oname.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5Oname.c b/src/H5Oname.c
index 6224401..7d76fa5 100644
--- a/src/H5Oname.c
+++ b/src/H5Oname.c
@@ -22,13 +22,13 @@
#define PABLO_MASK H5O_name_mask
/* PRIVATE PROTOTYPES */
-static void *H5O_name_decode (hdf5_file_t *f, size_t raw_size, const uint8 *p);
-static herr_t H5O_name_encode (hdf5_file_t *f, size_t raw_size, uint8 *p,
+static void *H5O_name_decode (H5F_t *f, size_t raw_size, const uint8 *p);
+static herr_t H5O_name_encode (H5F_t *f, size_t raw_size, uint8 *p,
const void *_mesg);
static void *H5O_name_copy (const void *_mesg, void *_dest);
-static size_t H5O_name_size (hdf5_file_t *f, const void *_mesg);
+static size_t H5O_name_size (H5F_t *f, const void *_mesg);
static herr_t H5O_name_reset (void *_mesg);
-static herr_t H5O_name_debug (hdf5_file_t *f, const void *_mesg, FILE *stream,
+static herr_t H5O_name_debug (H5F_t *f, const void *_mesg, FILE *stream,
intn indent, intn fwidth);
/* This message derives from H5O */
@@ -70,7 +70,7 @@ static hbool_t interface_initialize_g = FALSE;
*-------------------------------------------------------------------------
*/
static void *
-H5O_name_decode (hdf5_file_t *f, size_t raw_size, const uint8 *p)
+H5O_name_decode (H5F_t *f, size_t raw_size, const uint8 *p)
{
H5O_name_t *mesg;
char *s;
@@ -109,7 +109,7 @@ H5O_name_decode (hdf5_file_t *f, size_t raw_size, const uint8 *p)
*-------------------------------------------------------------------------
*/
static herr_t
-H5O_name_encode (hdf5_file_t *f, size_t raw_size, uint8 *p, const void *_mesg)
+H5O_name_encode (H5F_t *f, size_t raw_size, uint8 *p, const void *_mesg)
{
const H5O_name_t *mesg = (const H5O_name_t *)_mesg;
size_t size;
@@ -192,7 +192,7 @@ H5O_name_copy (const void *_mesg, void *_dest)
*-------------------------------------------------------------------------
*/
static size_t
-H5O_name_size (hdf5_file_t *f, const void *_mesg)
+H5O_name_size (H5F_t *f, const void *_mesg)
{
const H5O_name_t *mesg = (const H5O_name_t *)_mesg;
size_t size;
@@ -261,7 +261,7 @@ H5O_name_reset (void *_mesg)
*-------------------------------------------------------------------------
*/
static herr_t
-H5O_name_debug (hdf5_file_t *f, const void *_mesg, FILE *stream,
+H5O_name_debug (H5F_t *f, const void *_mesg, FILE *stream,
intn indent, intn fwidth)
{
const H5O_name_t *mesg = (const H5O_name_t *)_mesg;