summaryrefslogtreecommitdiffstats
path: root/Tests/FindPython/VersionRange
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-10-27 16:32:35 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-10-27 16:32:42 (GMT)
commitb79aadbfd41441c6a863da77cfa0f83cfaa31449 (patch)
treeec4f0971d6a4996ee5bce7793293458507c49f62 /Tests/FindPython/VersionRange
parent8d6a0b9364581fbb95746c93cac4ec3c213f534b (diff)
parente68d3e3b445bd735cc16ef308de1ef35fa98d784 (diff)
downloadCMake-b79aadbfd41441c6a863da77cfa0f83cfaa31449.zip
CMake-b79aadbfd41441c6a863da77cfa0f83cfaa31449.tar.gz
CMake-b79aadbfd41441c6a863da77cfa0f83cfaa31449.tar.bz2
Merge topic 'ci-config-sync' into release-3.19
e68d3e3b44 ci: update to Qt 5.15.1 d759c4310d ci: update to use CMake 3.18.4 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5433
Diffstat (limited to 'Tests/FindPython/VersionRange')
0 files changed, 0 insertions, 0 deletions
/hdf5.git/log/src/H5FDcore.h'>
path: root/src/H5FDcore.h
blob: dca110ea20826e9a7c23f286d1153a4aed69b26b (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 by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 * terms governing use, modification, and redistribution, is contained in    *
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 * of the source code distribution tree; Copyright.html can be found at the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/*
 * Programmer:  Robb Matzke <matzke@llnl.gov>
 *              Monday, August  2, 1999
 *
 * Purpose:	The public header file for the sec2 driver.
 */
#ifndef H5FDcore_H
#define H5FDcore_H

#include "H5Ipublic.h"

#define H5FD_CORE	(H5FD_core_init())

#ifdef __cplusplus
extern "C" {
#endif
H5_DLL hid_t H5FD_core_init(void);
H5_DLL void H5FD_core_term(void);
H5_DLL herr_t H5Pset_fapl_core(hid_t fapl_id, size_t increment,
				hbool_t backing_store);
H5_DLL herr_t H5Pget_fapl_core(hid_t fapl_id, size_t *increment/*out*/,
				hbool_t *backing_store/*out*/);
#ifdef __cplusplus
}
#endif

#endif