diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-06 21:37:57 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-06 21:37:57 (GMT) |
commit | 2c4af336d30a42c3d12664ad0f08fbd96471c80f (patch) | |
tree | 560cd4eec035b47c1d2eb1c8236ef1cf189619c3 /src/H5RAprivate.h | |
parent | deeb5978c0377face944162fada47516e0ed063c (diff) | |
download | hdf5-2c4af336d30a42c3d12664ad0f08fbd96471c80f.zip hdf5-2c4af336d30a42c3d12664ad0f08fbd96471c80f.tar.gz hdf5-2c4af336d30a42c3d12664ad0f08fbd96471c80f.tar.bz2 |
[svn-r739] Switched ragged array "H5R" API to "H5RA" to make room for the reference API.
Diffstat (limited to 'src/H5RAprivate.h')
-rw-r--r-- | src/H5RAprivate.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/H5RAprivate.h b/src/H5RAprivate.h new file mode 100644 index 0000000..19e11d7 --- /dev/null +++ b/src/H5RAprivate.h @@ -0,0 +1,28 @@ +/* + * Copyright © 1998 NCSA + * All rights reserved. + * + * Programmer: Robb Matzke <matzke@llnl.gov> + * Tuesday, August 25, 1998 + */ +#ifndef _H5RAprivate_H +#define _H5RAprivate_H +#include <H5RApublic.h> + +#include <H5Dprivate.h> +#include <H5Gprivate.h> +#include <H5Tprivate.h> + +typedef struct H5RA_t H5RA_t; + +herr_t H5RA_close(H5RA_t *ra); +H5RA_t *H5RA_create(H5G_entry_t *loc, const char *name, H5T_t *type, + const H5D_create_t *dcpl); +H5RA_t *H5RA_open(H5G_entry_t *loc, const char *name); +herr_t H5RA_write(H5RA_t *ra, hssize_t start_row, hsize_t nrows, H5T_t *type, + hsize_t size[], void *buf[]); +herr_t H5RA_read(H5RA_t *ra, hssize_t start_row, hsize_t nrows, H5T_t *type, + hsize_t size[], void *buf[]); +H5G_entry_t *H5RA_entof(H5RA_t *ra); + +#endif |