STATUS_OBJECT_NOTIFICATION
The STATUS_OBJECT_NOTIFICATION
structure describes changes that were made to a status object.
Quick Info
Header
file: |
MAPIDEFS.H |
typedef struct
{
ULONG cbEntryID;
LPENTRYID lpEntryID;
ULONG cValues;
LPSPropValue lpPropVals;
} STATUS_OBJECT_NOTIFICATION;
Members
cbEntryID
Count of
bytes in the entry identifier pointed to by the lpEntryID member.
lpEntryID
Pointer to
the entry identifier of the changed status object.
cValues
Count of SPropValue
lpPropVals
Pointer to an
array of SPropValue structures, one property value structure for each
changed property of the status object.
Remarks
The STATUS_OBJECT_NOTIFICATION
structure is one of the members of the union of structures included in the info
member of the NOTIFICATION
For more
information about notification, see the topics described in the following
table.
Topic |
Description |
Event
Notification in MAPI |
General
overview of notification and notification events. |
Handling
Notifications |
Discussion
of how clients should handle notifications. |
Using a
Support Object for Event Notification |
Discussion
of how service providers can use the IMAPISupport method to generate
notifications. |
See Also