summaryrefslogtreecommitdiffstats
path: root/src/H5RApublic.h
blob: 8478f9079439cb6f066170e4acb5295c08484723 (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
29
/*
 * 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

__DLL__ hid_t H5RAcreate(hid_t loc_id, const char *name, hid_t type_id,
			 hid_t plist_id);
__DLL__ hid_t H5RAopen(hid_t loc_id, const char *name);
__DLL__ herr_t H5RAclose(hid_t array_id);
__DLL__ herr_t H5RAwrite(hid_t array_id, hssize_t start_row, hsize_t nrows,
			 hid_t type_id, hsize_t size[], void *buf[]);
__DLL__ 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