diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-01-21 18:33:39 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-01-21 18:33:39 (GMT) |
commit | a2b8da49db95737d1962bbf7969cbc86a0b0233d (patch) | |
tree | dca97737d4bdf7ee2cdae8040fe5a9b9d6ee0b0f /src/H5Apublic.h | |
parent | bb776bacbf1dd3e80c7ade0f8afc91c2544977b5 (diff) | |
download | hdf5-a2b8da49db95737d1962bbf7969cbc86a0b0233d.zip hdf5-a2b8da49db95737d1962bbf7969cbc86a0b0233d.tar.gz hdf5-a2b8da49db95737d1962bbf7969cbc86a0b0233d.tar.bz2 |
[svn-r1032] Changes since 19990118
----------------------
./tools/h5tools.c
Strings are not converted to null-padding before being
printed; they are printed with whatever byte values appear in
the file.
./tools/h5ls.c
Now able to display attribute data type and data.
Added a `-f' or `--full' switch which causes the full name of
each object to be displayed instead of just the base name.
Added a `-r' or `--recursive' switch that recursively prints
the contents of groups, avoiding cycles.
More bulletproofing for non-printable characters in things
like object names, attribute names, and comment strings. We
don't want listing a file to send termal escape sequences
because it's sometimes possible to execute commands that way.
Since h5ls doesn't usually use quotes around object names we
must sometimes escape space characters.
External files are listed in a table to make the output less
confusing.
./tools/h5tools.c
./tools/h5tools.h
Changed h5dump() to h5dump_dset() and added h5dump_mem(). Also
make h5dump_fixtype() public.
./test/dtypes.c
Wrote some data to an attribute to test h5ls attribute
printing.
./src/H5ACprivate.h
./src/H5Apublic.h
./src/H5Dprivate.h
./src/H5Dpublic.h
./src/H5Epublic.h
./src/H5Fprivate.h
./src/H5Fpublic.h
./src/H5Gprivate.h
./src/H5HLprivate.h
./src/H5Oprivate.h
./src/H5Ppublic.h
./src/H5RApublic.h
./src/H5Rpublic.h
./src/H5Spublic.h
./src/H5Tpkg.h
./src/H5Tpublic.h
./src/H5Vprivate.h
./src/H5Zpublic.h
./src/H5private.h
./src/H5public.h
Reindented function prototypes after `HDF5API' was added. Also
rewrapped long lines.
./src/H5Flow.c
Added an `#ifdef WIN32' around an unused variable.
./src/H5api_adpt.h
Removed extra carriage returns inserted by "broken" operating
system.
./src/H5Dprivate.h
./src/H5Oprivate.h
./src/H5Vprivate.h
./src/H5private.h
Removed extraneous inclusion of H5api_adpt.h since it's
included in H5public.h which is included by everything.
./src/Makefile.in
Added H5api_adpt.h to the list of public header files to fix
broken `make install'.
Diffstat (limited to 'src/H5Apublic.h')
-rw-r--r-- | src/H5Apublic.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Apublic.h b/src/H5Apublic.h index aa40778..4b14943 100644 --- a/src/H5Apublic.h +++ b/src/H5Apublic.h @@ -27,8 +27,8 @@ typedef int (*H5A_operator_t)(hid_t location_id/*in*/, const char *attr_name/*in*/, void *operator_data/*in,out*/); /* Public function prototypes */ -HDF5API hid_t H5Acreate(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id, - hid_t plist_id); +HDF5API hid_t H5Acreate(hid_t loc_id, const char *name, hid_t type_id, + hid_t space_id, hid_t plist_id); HDF5API hid_t H5Aopen_name(hid_t loc_id, const char *name); HDF5API hid_t H5Aopen_idx(hid_t loc_id, unsigned idx); HDF5API herr_t H5Awrite(hid_t attr_id, hid_t type_id, void *buf); @@ -39,7 +39,7 @@ HDF5API hid_t H5Aget_type(hid_t attr_id); HDF5API hssize_t H5Aget_name(hid_t attr_id, size_t buf_size, char *buf); HDF5API int H5Aget_num_attrs(hid_t loc_id); HDF5API int H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op, - void *op_data); + void *op_data); HDF5API herr_t H5Adelete(hid_t loc_id, const char *name); #ifdef __cplusplus |