Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-18 09:16:02

0001 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
0002  * Copyright by The HDF Group.                                               *
0003  * All rights reserved.                                                      *
0004  *                                                                           *
0005  * This file is part of HDF5.  The full HDF5 copyright notice, including     *
0006  * terms governing use, modification, and redistribution, is contained in    *
0007  * the COPYING file, which can be found at the root of the source code       *
0008  * distribution tree, or in https://www.hdfgroup.org/licenses.               *
0009  * If you do not have access to either file, you may request a copy from     *
0010  * help@hdfgroup.org.                                                        *
0011  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
0012 
0013 /*
0014  * This file contains public declarations for the H5ES (event set) developer
0015  *      support routines.
0016  */
0017 
0018 #ifndef H5ESdevelop_H
0019 #define H5ESdevelop_H
0020 
0021 /* Include package's public header */
0022 #include "H5ESpublic.h"
0023 
0024 /*****************/
0025 /* Public Macros */
0026 /*****************/
0027 
0028 /*******************/
0029 /* Public Typedefs */
0030 /*******************/
0031 
0032 /********************/
0033 /* Public Variables */
0034 /********************/
0035 
0036 /*********************/
0037 /* Public Prototypes */
0038 /*********************/
0039 
0040 #ifdef __cplusplus
0041 extern "C" {
0042 #endif
0043 
0044 H5_DLL herr_t H5ESinsert_request(hid_t es_id, hid_t connector_id, void *request);
0045 H5_DLL herr_t H5ESget_requests(hid_t es_id, H5_iter_order_t order, hid_t *connector_ids, void **requests,
0046                                size_t array_len, size_t *count);
0047 
0048 #ifdef __cplusplus
0049 }
0050 #endif
0051 
0052 #endif /* H5ESdevelop_H */