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

Changed comment style to avoid long line issue. #5237

Merged
merged 3 commits into from
Jan 14, 2025
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
33 changes: 20 additions & 13 deletions src/H5Mpublic.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,26 @@
/*****************/

/* Macros defining operation IDs for map VOL callbacks (implemented using the
* "optional" VOL callback) */
#define H5VL_MAP_CREATE 1 /**< Callback operation ID for map create \since 1.12.0 */
#define H5VL_MAP_OPEN 2 /**< Callback operation ID for map open \since 1.12.0 */
#define H5VL_MAP_GET_VAL \
3 /**< Callback operation ID for getting an associated value from a map \since 1.12.0 */
#define H5VL_MAP_EXISTS \
4 /**< Callback operation ID for checking if a value exists in a map \since 1.12.0 \
*/
#define H5VL_MAP_PUT 5 /**< Callback operation ID for putting a key-value pair to a map \since 1.12.0 */
#define H5VL_MAP_GET 6 /**< Callback operation ID for map get callback \since 1.12.0 */
#define H5VL_MAP_SPECIFIC 7 /**< Callback operation ID for map specific operation \since 1.12.0 */
#define H5VL_MAP_OPTIONAL 8 /**< Currently unused \since 1.12.0 */
#define H5VL_MAP_CLOSE 9 /**< Callback operation ID for terminating access to a map \since 1.12.0 */
* "optional" VOL callback)
*/
/** Callback operation ID for map create \since 1.12.0 */
#define H5VL_MAP_CREATE 1
/** Callback operation ID for map open \since 1.12.0 */
#define H5VL_MAP_OPEN 2
/** Callback operation ID for getting an associated value from a map \since 1.12.0 */
#define H5VL_MAP_GET_VAL 3
/** Callback operation ID for checking if a value exists in a map \since 1.12.0 */
#define H5VL_MAP_EXISTS 4
/** Callback operation ID for putting a key-value pair to a map \since 1.12.0 */
#define H5VL_MAP_PUT 5
/** Callback operation ID for map get callback \since 1.12.0 */
#define H5VL_MAP_GET 6
/** Callback operation ID for map specific operation \since 1.12.0 */
#define H5VL_MAP_SPECIFIC 7
/** Currently unused \since 1.12.0 */
#define H5VL_MAP_OPTIONAL 8
/** Callback operation ID for terminating access to a map \since 1.12.0 */
#define H5VL_MAP_CLOSE 9

/*******************/
/* Public Typedefs */
Expand Down
Loading