ROWLIST

The ROWLIST structure contains an array of ROWENTRY structures representing rows and the operations that are performed on those rows in a table through the IExchangeModifyTable interface.

Quick Info

Header file: EDKMDB.H

typedef struct
{
  ULONG     cEntries;
  ROWENTRY  aEntries[MAPI_DIM];
}  ROWLIST, FAR * LPROWLIST;

Members

cEntries
The number of entries in the aEntries array.
aEntries[MAPI_DIM]
An array of ROWENTRY structures containing the rows and the operations that are performed on those rows in the table.

Remarks

For an example of how to use this structure, see the SROWLST.CPP code sample under the ACLCLS topic.

See Also

IExchangeModifyTable::ModifyTable, ROWENTRY