This structure defines the individual partition information objects. This structure is defined in kvpartition.h.
typedef struct tag_KVPartitionInfoList
{
KVStructHeader;
const char* anchor;
KVPartitionStartReason startReason;
KVPartitionDimensions dimensions;
}
KVPartitionInfo;
KVStructHeader
|
The KeyView version of the structure. See KVStructHead. |
anchor
|
The anchor name corresponding to the file or stream this partition was written to. |
startReason
|
The reason this partition was created. The reasons are defined in the KVPartitionStartReason enum in kvpartition.h. |
dimensions
|
The dimensions of the partition, given as a KVPartitionDimensions structure. |
|
|