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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/****************************************************************************
* NCSA HDF *
* Scientific Data Technologies *
* National Center for Supercomputing Applications *
* University of Illinois at Urbana-Champaign *
* 605 E. Springfield, Champaign IL 61820 *
* *
* For conditions of distribution and use, see the accompanying *
* hdf/COPYING file. *
* *
****************************************************************************/
#ifndef _H5Lite_H
#define _H5Lite_H
#include "H5private.h"
#include "H5Ipublic.h"
#include "H5Fpublic.h"
#include "H5Tpublic.h"
#include "H5Ppublic.h"
#include "H5Spublic.h"
#include "H5Gpublic.h"
#include "H5Apublic.h"
herr_t H5Lmake_dataset( hid_t loc_id,
const char *dset_name,
int rank,
const hsize_t *dims,
hid_t file_type_id,
hid_t mem_type_id,
const void *buffer );
herr_t H5Lattach_attribute( hid_t loc_id,
const char *dset_name,
const char *attr_name,
const char *attr_data );
herr_t H5Lattach_attribute_numerical( hid_t loc_id,
const char *dset_name,
const char *attr_name,
hsize_t dim,
hid_t file_type_id,
hid_t mem_type_id,
void *buffer );
herr_t H5Lmake_groups( hid_t loc_id,
int ngroups,
const char *names[] );
herr_t H5Lget_groups( hid_t loc_id,
const char *group_name );
herr_t H5Lget_attributes( hid_t loc_id );
#endif
|