SInitPropValue

The SInitPropValue structure contains a property tag and its value. Use this structure to initialize a property value array.

Quick Info

Header file: EXADMIN.H

typedef struct
{
  ULONG     ulPropTag;
  ULONG     dwAlignPad;
  LONGLONG  ll;
}  SInitPropValue, * LPSInitPropValue;

Members

ulPropTag
Property tag for the property. This tag consists of a code for the property type in the lower 16 bits and a code for the property identifier in the upper 16 bits.
dwAlignPad
Padding bytes to properly align the information indicated by ll.
ll
Property value expressed as a LONGLONG.

Remarks

Except for the ll member, this structure is identical to the SPropValue structure.

For an example of how to use this structure, see the HrProcessNew function call in the COMMANDS.C code sample under the SMBAGENT topic. For information on SPropValue, see the MAPI Programmer’s Reference.