diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-03-24 14:53:57 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-03-24 14:53:57 (GMT) |
commit | 2ed9aa69f74cc2002fb9a03c8893056a1daea1db (patch) | |
tree | adf512fcc40417123f7e464b2b92b555eab5fb96 /src/H5Gpublic.h | |
parent | af6558c7cb0f2b4ef3a789eca7554da4db521f03 (diff) | |
download | hdf5-2ed9aa69f74cc2002fb9a03c8893056a1daea1db.zip hdf5-2ed9aa69f74cc2002fb9a03c8893056a1daea1db.tar.gz hdf5-2ed9aa69f74cc2002fb9a03c8893056a1daea1db.tar.bz2 |
[svn-r328] Changes since 19980318
----------------------
./src/H5B.c
./src/H5Bprivate.h
./src/H5G.c
./src/H5Gnode.c
./src/H5Gpkg.h
./src/H5Gpublic.h
./src/H5Gstab.c
Implemented H5Giterate(). However, since most functions can't
take a group ID in place of a file ID yet, there's not a whole
lot that the operator can do besides print the name or something.
./test/H5O.c
Fixed writing of four uninitialized bytes to the file as part
of an object header.
./test/istore.c
For some reason, `mpirun -np 1 istore' results in extra
arguments on the command line that istore doesn't understand.
I'm probably forgetting to call some MPI function in
main(). Albert, Kim? So I commented out the `exit(1)' for the
time being.
Diffstat (limited to 'src/H5Gpublic.h')
-rw-r--r-- | src/H5Gpublic.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/H5Gpublic.h b/src/H5Gpublic.h index b0a33b8..435d384 100644 --- a/src/H5Gpublic.h +++ b/src/H5Gpublic.h @@ -27,12 +27,17 @@ extern "C" { #endif +typedef herr_t (*H5G_iterate_t)(hid_t group, const char *group_name, + void *op_data); + hid_t H5Gcreate (hid_t file_id, const char *name, size_t size_hint); hid_t H5Gopen (hid_t file_id, const char *name); herr_t H5Gclose (hid_t grp_id); herr_t H5Gset (hid_t file, const char *name); herr_t H5Gpush (hid_t file, const char *name); herr_t H5Gpop (hid_t file); +herr_t H5Giterate (hid_t file, const char *name, int *idx, H5G_iterate_t op, + void *op_data); #ifdef __cplusplus } |