CSSM_DB_RECORD_INDEX_INFO
This structure contains the meta-information or schema description of the set of indexes defined on a single record type. The description includes the type of the record, the number of indexes and the meta-information describing each index.
typedef struct cssm_db_record_index_info {
CSSM_DB_RECORDTYPE DataRecordType;
uint32 NumberOfIndexes;
CSSM_DB_INDEX_INFO_PTR IndexInfo;
} CSSM_DB_RECORD_INDEX_INFO, *CSSM_DB_RECORD_INDEX_INFO_PTR;
Definitions:
- DataRecordType
- A CSSM_DB_RECORDTYPE.
- NumberOfIndexes
- The number of indexes defined on the records of the given type.
- IndexInfo
- An array of pointer to the meta-description of each index defined over the specified record type.