KVPartitionInfoList
This structure provides a count of the number of partitions, and a pointer to the first partition of the array of individual partitions. You fill out the structure by calling the fpGetPartitionInfoList()
function. See fpGetPartitionInfoList.
This structure is defined in kvpartition.h
.
typedef struct tag_KVPartitionInfoList { KVStructHeader; KVPartitionInfo* partitionInfoList; int partitionInfoListLength; } KVPartitionInfoList;
Member Descriptions
KVStructHeader
|
The KeyView version of the structure. See KVStructHead. |
partitionInfoList
|
Points to the first element of the array of partition information objects, defined by the KVPartitionInfo structure. |
partitionInfoListLength
|
The number of partitions contained in the array. |