H5ESdevelop.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  2. * Copyright by The HDF Group. *
  3. * All rights reserved. *
  4. * *
  5. * This file is part of HDF5. The full HDF5 copyright notice, including *
  6. * terms governing use, modification, and redistribution, is contained in *
  7. * the COPYING file, which can be found at the root of the source code *
  8. * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
  9. * If you do not have access to either file, you may request a copy from *
  10. * help@hdfgroup.org. *
  11. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  12. /*
  13. * This file contains public declarations for the H5ES (event set) developer
  14. * support routines.
  15. */
  16. #ifndef _H5ESdevelop_H
  17. #define _H5ESdevelop_H
  18. /* Include package's public header */
  19. #include "H5ESpublic.h"
  20. /*****************/
  21. /* Public Macros */
  22. /*****************/
  23. /*******************/
  24. /* Public Typedefs */
  25. /*******************/
  26. /********************/
  27. /* Public Variables */
  28. /********************/
  29. /*********************/
  30. /* Public Prototypes */
  31. /*********************/
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35. H5_DLL herr_t H5ESinsert_request(hid_t es_id, hid_t connector_id, void *request);
  36. H5_DLL herr_t H5ESget_requests(hid_t es_id, H5_iter_order_t order, hid_t *connector_ids, void **requests,
  37. size_t array_len, size_t *count);
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif /* _H5ESdevelop_H */