H5FDmulti.h

00001 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
00002  * Copyright by The HDF Group.                                               *
00003  * Copyright by the Board of Trustees of the University of Illinois.         *
00004  * All rights reserved.                                                      *
00005  *                                                                           *
00006  * This file is part of HDF5.  The full HDF5 copyright notice, including     *
00007  * terms governing use, modification, and redistribution, is contained in    *
00008  * the files COPYING and Copyright.html.  COPYING can be found at the root   *
00009  * of the source code distribution tree; Copyright.html can be found at the  *
00010  * root level of an installed copy of the electronic HDF5 document set and   *
00011  * is linked from the top-level documents page.  It can also be found at     *
00012  * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
00013  * access to either file, you may request a copy from help@hdfgroup.org.     *
00014  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
00015 
00016 /*
00017  * Programmer:  Robb Matzke <matzke@llnl.gov>
00018  *              Monday, August  2, 1999
00019  *
00020  * Purpose:     The public header file for the "multi" driver.
00021  */
00022 #ifndef H5FDmulti_H
00023 #define H5FDmulti_H
00024 
00025 #include "H5Ipublic.h"
00026 #include "H5Ppublic.h"             /* Property lists */
00027 #include "H5Fpublic.h"
00028 
00029 #define H5FD_MULTI      (H5FD_multi_init())
00030 
00031 #ifdef __cplusplus
00032 extern "C" {
00033 #endif
00034 H5_DLL hid_t H5FD_multi_init(void);
00035 H5_DLL void H5FD_multi_term(void);
00036 H5_DLL herr_t H5Pset_fapl_multi(hid_t fapl_id, const H5FD_mem_t *memb_map,
00037                          const hid_t *memb_fapl, const char * const *memb_name,
00038                          const haddr_t *memb_addr, hbool_t relax);
00039 H5_DLL herr_t H5Pget_fapl_multi(hid_t fapl_id, H5FD_mem_t *memb_map/*out*/,
00040                          hid_t *memb_fapl/*out*/, char **memb_name/*out*/,
00041                          haddr_t *memb_addr/*out*/, hbool_t *relax/*out*/);
00042 H5_DLL herr_t H5Pset_dxpl_multi(hid_t dxpl_id, const hid_t *memb_dxpl);
00043 H5_DLL herr_t H5Pget_dxpl_multi(hid_t dxpl_id, hid_t *memb_dxpl/*out*/);
00044 
00045 H5_DLL herr_t H5Pset_fapl_split(hid_t fapl, const char *meta_ext,
00046                          hid_t meta_plist_id, const char *raw_ext,
00047                          hid_t raw_plist_id);
00048 #ifdef __cplusplus
00049 }
00050 #endif
00051 
00052 #endif