source: anuga_core/install/winxp/NetCDFWinInstaller/include/H5Cpublic.h @ 7310

Last change on this file since 7310 was 7310, checked in by rwilson, 15 years ago

Added the NetCDF Windows installer.

  • Property svn:executable set to *
File size: 1.9 KB
Line 
1/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2 * Copyright by The HDF Group.                                               *
3 * Copyright by the Board of Trustees of the University of Illinois.         *
4 * All rights reserved.                                                      *
5 *                                                                           *
6 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
7 * terms governing use, modification, and redistribution, is contained in    *
8 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
9 * of the source code distribution tree; Copyright.html can be found at the  *
10 * root level of an installed copy of the electronic HDF5 document set and   *
11 * is linked from the top-level documents page.  It can also be found at     *
12 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
13 * access to either file, you may request a copy from help@hdfgroup.org.     *
14 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15
16/*-------------------------------------------------------------------------
17 *
18 * Created:     H5Cproto.h
19 *              June 4, 2005
20 *              John Mainzer
21 *
22 * Purpose:     Public include file for cache functions.
23 *
24 * Modifications:
25 *
26 *-------------------------------------------------------------------------
27 */
28#ifndef _H5Cpublic_H
29#define _H5Cpublic_H
30
31/* Public headers needed by this file */
32#include "H5public.h"
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38enum H5C_cache_incr_mode
39{
40    H5C_incr__off,
41    H5C_incr__threshold
42};
43
44enum H5C_cache_flash_incr_mode
45{
46    H5C_flash_incr__off,
47    H5C_flash_incr__add_space
48};
49
50enum H5C_cache_decr_mode
51{
52    H5C_decr__off,
53    H5C_decr__threshold,
54    H5C_decr__age_out,
55    H5C_decr__age_out_with_threshold
56};
57
58#ifdef __cplusplus
59}
60#endif
61#endif
Note: See TracBrowser for help on using the repository browser.