summaryrefslogtreecommitdiffstats
path: root/src/H5RApublic.h
blob: c24674338d77d53f8820468cd920849190ea8638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright © 1998 NCSA
 *                  All rights reserved.
 *
 * Programmer:  Robb Matzke <matzke@llnl.gov>
 *              Tuesday, August 25, 1998
 */
#ifndef _H5RApublic_H
#define _H5RApublic_H

#include <H5Ipublic.h>

#ifdef __cplusplus
extern "C" {
#endif

HDF5API hid_t H5RAcreate(hid_t loc_id, const char *name, hid_t type_id, hid_t plist_id);
HDF5API hid_t H5RAopen(hid_t loc_id, const char *name);
HDF5API herr_t H5RAclose(hid_t array_id);
HDF5API herr_t H5RAwrite(hid_t array_id, hssize_t start_row, hsize_t nrows,
		hid_t type_id, hsize_t size[], void *buf[]);
HDF5API herr_t H5RAread(hid_t array_id, hssize_t start_row, hsize_t nrows,
	       hid_t type_id, hsize_t size[], void *buf[]);

#ifdef __cplusplus
}
#endif
#endif