Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Doxygen for H5Pset_fapl_sec2() #3685

Merged
merged 2 commits into from
Oct 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/H5FDsec2.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,23 @@
extern "C" {
#endif

H5_DLL hid_t H5FD_sec2_init(void);
H5_DLL hid_t H5FD_sec2_init(void);

/**
* \ingroup FAPL
*
* \brief Modifies the file access property list to use the #H5FD_SEC2 driver
*
* \fapl_id
*
* \returns \herr_t
*
* \details H5Pset_fapl_sec2() modifies the file access property list to use the
* #H5FD_SEC2 driver.
*
* \since 1.4.0
*
*/
H5_DLL herr_t H5Pset_fapl_sec2(hid_t fapl_id);

#ifdef __cplusplus
Expand Down