blob: a040eda6bdb288d770c6ea98b28b46bb0d689213 (
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
|
/*-------------------------------------------------------------------------
* Copyright (C) 1997 National Center for Supercomputing Applications.
* All rights reserved.
*
*-------------------------------------------------------------------------
*
* Created: H5MFprivate.h
* Jul 11 1997
* Robb Matzke <robb@maya.nuance.com>
*
* Purpose: Private header file for file memory management.
*
* Modifications:
*
*-------------------------------------------------------------------------
*/
#ifndef _H5MFprivate_H
#define _H5MFprivate_H
#include "H5MFproto.h"
/*
* Library prototypes...
*/
off_t H5MF_alloc (hdf5_file_t *f, size_t size);
herr_t H5MF_free (hdf5_file_t *f, off_t addr, size_t size);
#endif
|