blob: 20760b08bf31892fb83fada305341ee50bed95c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*-------------------------------------------------------------------------
* Copyright (C) 1997 National Center for Supercomputing Applications.
* All rights reserved.
*
*-------------------------------------------------------------------------
*/
#ifndef _H5Git_H
#define _H5Git_H
#include "hdf5.h"
int H5Gn_members( hid_t loc_id, char *group_name );
herr_t H5Gget_obj_info_idx( hid_t loc_id, char *group_name, int idx, char **objname, size_t max_objname_len, int *type );
#endif /*_H5Git_H*/
|