MMC_SORT_DATA structure (mmc.h)
The MMC_SORT_DATA structure is introduced in MMC 1.2.
The MMC_SORT_DATA structure contains the column sort data of a single column in a column set. This data is persisted in memory by MMC. A pointer to an array of these structures is held in the pSortData member of the MMC_SORT_SET_DATA structure.
Syntax
typedef struct _MMC_SORT_DATA {
int nColIndex;
DWORD dwSortOptions;
ULONG_PTR ulReserved;
} MMC_SORT_DATA;
Members
nColIndex
A zero-based index value of the column.
dwSortOptions
Sort options to be used during the sort operation. This value can be a combination of the following:
RSI_DESCENDING = 0x0001
The sort should be in descending order. The default is to sort in ascending order.
RSI_NOSORTICON = 0x0002
Instructs MMC to remove the sort arrow icon. This option is useful when the snap-in performs a custom sort operation.
ulReserved
Reserved for future use.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista |
Minimum supported server | Windows Server 2008 |
Header | mmc.h |