summaryrefslogtreecommitdiffstats
path: root/src/H5Rpublic.h
blob: bcdcee783486802874465ebab564959b37aafd88 (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 _H5Rpublic_H
#define _H5Rpublic_H

#include <H5Ipublic.h>

#ifdef __cplusplus
extern "C" {
#endif

hid_t H5Rcreate(hid_t loc_id, const char *name, hid_t type_id, hid_t plist_id);
hid_t H5Ropen(hid_t loc_id, const char *name);
herr_t H5Rclose(hid_t array_id);
herr_t H5Rwrite(hid_t array_id, hssize_t start_row, hsize_t nrows,
		hid_t type_id, hsize_t size[], void *buf[]);
herr_t H5Rread(hid_t array_id, hssize_t start_row, hsize_t nrows,
	       hid_t type_id, hsize_t size[], void *buf[]);

#ifdef __cplusplus
}
#endif
#endif