CSSM_DB_ATTRIBUTE_DATA
This data structure holds an attribute value that can be stored in an attribute field of a persistent record. The structure contains a value for the data item and a reference to the meta-information (typing information and schema information) associated with the attribute.
typedef struct cssm_db_attribute_data {
CSSM_DB_ATTRIBUTE_INFO Info;
CSSM_DATA Value;
} CSSM_DB_ATTRIBUTE_DATA, *CSSM_DB_ATTRIBUTE_DATA_PTR;
Definitions:
- Info
- A reference to the meta-information/schema describing this attribute in relationship to the data store at large.
- Value
- The data-present value assigned to the attribute.