-
-
Notifications
You must be signed in to change notification settings - Fork 272
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 release information to enum constants - Part 1 #5174
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,10 +41,16 @@ typedef enum H5PL_type_t { | |
//! <!-- [H5PL_type_t_snip] --> | ||
|
||
/* Common dynamic plugin type flags used by the set/get_loading_state functions */ | ||
/** Flag for filter plugin \since 1.8.15 */ | ||
#define H5PL_FILTER_PLUGIN 0x0001 | ||
#define H5PL_VOL_PLUGIN 0x0002 | ||
#define H5PL_VFD_PLUGIN 0x0004 | ||
#define H5PL_ALL_PLUGIN 0xFFFF | ||
/** Flag for VOL plugin \since 1.12.0 */ | ||
#define H5PL_VOL_PLUGIN 0x0002 | ||
/** Flag for VFD plugin \since 1.14.0 */ | ||
#define H5PL_VFD_PLUGIN 0x0004 | ||
/** Flag for all plugin types \since 1.8.15 */ | ||
#define H5PL_ALL_PLUGIN 0xFFFF | ||
|
||
#define H5F_ACC_DEBUG (0x0000u) /**< Print debug info \deprecated In which version? */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you mean to leave this question? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
@brtnfld That question wasn't from me. I don't know how it showed as a new line. I made a note to myself to check on that and fix it though. |
||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add () for linking:
H5Pset_relax_file_integrity_checks()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will fix this in my next PR. Thanks.