H5FDsec2.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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 COPYING file, which can be found at the root of the source code *
  9. * distribution tree, or in https://www.hdfgroup.org/licenses. *
  10. * If you do not have access to either file, you may request a copy from *
  11. * help@hdfgroup.org. *
  12. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  13. /*
  14. * Programmer: Robb Matzke
  15. * Monday, August 2, 1999
  16. *
  17. * Purpose: The public header file for the sec2 driver.
  18. */
  19. #ifndef H5FDsec2_H
  20. #define H5FDsec2_H
  21. #define H5FD_SEC2 (H5FDperform_init(H5FD_sec2_init))
  22. #define H5FD_SEC2_VALUE H5_VFD_SEC2
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. H5_DLL hid_t H5FD_sec2_init(void);
  27. H5_DLL herr_t H5Pset_fapl_sec2(hid_t fapl_id);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif