summaryrefslogtreecommitdiffstats
path: root/src/H5Gpublic.h
blob: f10f33e2483bfb3ca390528dd452b9326bbdfed7 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
/*-------------------------------------------------------------------------
 * Copyright (C) 1997   National Center for Supercomputing Applications.
 *                      All rights reserved.
 *
 *-------------------------------------------------------------------------
 *
 * Created:             H5Gproto.h
 *                      Jul 11 1997
 *                      Robb Matzke <matzke@llnl.gov>
 *
 * Purpose:             Public declarations for the H5G package (symbol
 *                      tables).
 *
 * Modifications:       
 *
 *-------------------------------------------------------------------------
 */
#ifndef _H5Gpublic_H
#define _H5Gpublic_H

/* Public headers needed by this file */
#include <sys/types.h>
#include <H5public.h>
#include <H5Apublic.h>

#ifdef __cplusplus
extern                  "C" {
#endif

    hid_t                   H5Gcreate(hid_t file_id, const char *name, size_t size_hint);
    hid_t                   H5Gopen(hid_t file_id, const char *name);
    herr_t                  H5Gclose(hid_t grp_id);

    herr_t                  H5Gset(hid_t file, const char *name);
    herr_t                  H5Gpush(hid_t file, const char *name);
    herr_t                  H5Gpop(hid_t file);

#ifdef __cplusplus
}

#endif
#endif