blob: 7f61a1216585f94380467c83f7a372260a1f3f61 (
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
|
/****************************************************************************
* NCSA HDF *
* Software Development Group *
* 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. *
* *
****************************************************************************/
/*
* This file contains private information about the H5D module
*/
#ifndef _H5Aprivate_H
#define _H5Aprivate_H
#include "H5Apublic.h"
#include "H5Gprivate.h"
#define H5A_RESERVED_ATOMS 0
typedef struct H5A_t H5A_t;
/* Private headers needed by this file */
/* Functions defined in H5A.c */
H5_DLL H5A_t *H5A_copy(const H5A_t *old_attr);
H5_DLL herr_t H5A_close(H5A_t *attr);
H5_DLL H5G_entry_t *H5A_entof(H5A_t *attr);
H5_DLL hsize_t H5A_get_storage_size(H5A_t *attr);
H5_DLL herr_t H5A_rename(H5G_entry_t *ent, char *old_name, char *new_name);
#endif
|