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  * Programmer:  Robb Matzke <matzke@llnl.gov>
18  *              Monday, August  2, 1999
19  *
20  * Purpose:	The public header file for the sec2 driver.
21  */
22 #ifndef H5FDsec2_H
23 #define H5FDsec2_H
24 
25 #include "H5Ipublic.h"
26 
27 #define H5FD_SEC2	(H5FD_sec2_init())
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
33 H5_DLL hid_t H5FD_sec2_init(void);
34 H5_DLL void H5FD_sec2_term(void);
35 H5_DLL herr_t H5Pset_fapl_sec2(hid_t fapl_id);
36 
37 #ifdef __cplusplus
38 }
39 #endif
40 
41 #endif
42 
43