blob: 6f89ec2bbeb3e63b8e19daa04407eb46ce8f8f6a (
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
|
/****************************************************************************
* 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 library private information about the H5FO module
*/
#ifndef _H5FOprivate_H
#define _H5FOprivate_H
#ifdef LATER
#include "H5FOpublic.h"
#endif /* LATER */
/* Private headers needed by this file */
#include "H5private.h"
#include "H5TBprivate.h" /* TBBTs */
/* Typedefs */
/* Typedef for open object cache */
typedef H5TB_TREE H5FO_t; /* Currently, all open objects are stored in TBBT */
/* Macros */
/* Private routines */
H5_DLL herr_t H5FO_create(H5F_t *f);
H5_DLL hid_t H5FO_opened(const H5F_t *f, haddr_t addr);
H5_DLL herr_t H5FO_insert(H5F_t *f, haddr_t addr, hid_t id);
H5_DLL herr_t H5FO_delete(H5F_t *f, haddr_t addr);
H5_DLL herr_t H5FO_dest(H5F_t *f);
#endif /* _H5FOprivate_H */
|