summaryrefslogtreecommitdiffstats
path: root/src/H5Dpublic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r--src/H5Dpublic.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h
index 900046a..a96755a 100644
--- a/src/H5Dpublic.h
+++ b/src/H5Dpublic.h
@@ -54,9 +54,10 @@ typedef enum H5D_layout_t {
/* Types of chunk index data structures */
typedef enum H5D_chunk_index_t {
H5D_CHUNK_IDX_BTREE = 0, /* v1 B-tree index (default) */
- H5D_CHUNK_IDX_FARRAY = 1, /* Fixed array (for 0 unlimited dims) */
- H5D_CHUNK_IDX_EARRAY = 2, /* Extensible array (for 1 unlimited dim) */
- H5D_CHUNK_IDX_BT2 = 3, /* v2 B-tree index (for >1 unlimited dims) */
+ H5D_CHUNK_IDX_NONE = 1, /* No Index (H5D_ALLOC_TIME_EARLY, non-filtered, fixed dims) */
+ H5D_CHUNK_IDX_FARRAY = 2, /* Fixed array (for 0 unlimited dims) */
+ H5D_CHUNK_IDX_EARRAY = 3, /* Extensible array (for 1 unlimited dim) */
+ H5D_CHUNK_IDX_BT2 = 4, /* v2 B-tree index (for >1 unlimited dims) */
H5D_CHUNK_IDX_NTYPES /*this one must be last! */
} H5D_chunk_index_t;