summaryrefslogtreecommitdiffstats
path: root/src/H5B2private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5B2private.h')
-rw-r--r--src/H5B2private.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/H5B2private.h b/src/H5B2private.h
index 5d8d42a..bd1515a 100644
--- a/src/H5B2private.h
+++ b/src/H5B2private.h
@@ -72,8 +72,11 @@ typedef struct H5B2_class_t {
/* Compare records, according to a key */
herr_t (*compare)(const H5F_t *f, hid_t dxpl_id, const void *rec1, const void *rec2); /* Compare two native records */
- /* Encode, decode, debug record values */
- herr_t (*encode)(const H5F_t *f, uint8_t *raw, const void *record); /* Store record in native key table */
+ /* Encode & decode record values */
+ herr_t (*encode)(const H5F_t *f, uint8_t *raw, const void *record); /* Encode record from native form to disk storage form */
+ herr_t (*decode)(const H5F_t *f, const uint8_t *raw, void *record); /* Decode record from disk storage form to native form */
+
+ /* Debug record values */
} H5B2_class_t;