MMC_COLUMN_SET_DATA structure (mmc.h)
The MMC_COLUMN_SET_DATA structure is introduced in MMC 1.2.
The MMC_COLUMN_SET_DATA structure is used with setting and retrieving list view column sets whose data is persisted in memory by MMC. The MMC_COLUMN_SET_DATA structure contains information about the number of columns in a particular column set as well as a pointer to persisted column data of the column set.
Syntax
typedef struct _MMC_COLUMN_SET_DATA {
int cbSize;
int nNumCols;
MMC_COLUMN_DATA *pColData;
} MMC_COLUMN_SET_DATA;
Members
cbSize
The size of the MMC_COLUMN_SET_DATA structure.
nNumCols
The number of columns in the column set.
pColData
A pointer to an array of MMC_COLUMN_DATA structures that contains the persisted column set data.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista |
Minimum supported server | Windows Server 2008 |
Header | mmc.h |
See also
IColumnData::GetColumnConfigData