Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

The SRowstructure describes a row from a table containing selected properties for a specific object.

Syntax

struct { 
  ULONG 
ulAdrEntryPad; 
  ULONG 
cValues; 
  LPSPropValue 
lpProps; 
} SRow, FAR *LPSRow; 

Members

ulAdrEntryPad

Padding bytes to properly align the property values pointed to by lpProps.

cValues

Count of property values pointed to by lpProps.

lpProps

Pointer to an array of SPropValuestructures that describe the property values for the columns in the row.

Remarks

An SRowstructure describes a row in a table. An SRowstructure is included in the TABLE_NOTIFICATIONstructure that accompanies a table notification and uses the IMAPITable::QueryRowsmethod and the FreeProwsfunction.

When more than one row must be described, an SRowSetstructure is used. An SRowSetstructure contains an array of SRowstructures and a count of structures in the array.

SRowstructures are defined the same as ADRENTRYstructures so that a row of a recipient table and an entry in an address list can be treated the same.

Requirements

Header mapidefs.h
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Pocket PC 2002 and later, Smartphone 2002 and later

See Also