Platform SDK: Synchronization Manager

SYNCMGRSTATUS

The SYNCMGRSTATUS enumeration values are used in the ISyncMgrSynchronize::SetItemStatus method to specify the updated status for the item.

typedef enum _tagSYNCMGRSTATUS {
   SYNCMGRSTATUS_STOPPED     = 0x0000,
   SYNCMGRSTATUS_SKIPPED     = 0x0001,
   SYNCMGRSTATUS_PENDING     = 0x0002,
   SYNCMGRSTATUS_UPDATING    = 0x0003,
   SYNCMGRSTATUS_SUCCEEDED   = 0x0004,
   SYNCMGRSTATUS_FAILED      = 0x0005,
   SYNCMGRSTATUS_PAUSED      = 0x0006,
   SYNCMGRSTATUS_RESUMING    = 0x0007,
} SYNCMGRSTATUS;

Elements

SYNCMGRSTATUS_STOPPED
Synchronization has been stopped.
SYNCMGRSTATUS_SKIPPED
This item should be skipped.
SYNCMGRSTATUS_PENDING
Synchronization for the item is pending.
SYNCMGRSTATUS_UPDATING
The item is currently being synchronized.
SYNCMGRSTATUS_SUCCEEDED
The synchronization for the item succeeded.
SYNCMGRSTATUS_FAILED
The synchronization for the item failed.
SYNCMGRSTATUS_PAUSED
The synchronization for the item paused.
SYNCMGRSTATUS_RESUMING
The synchronization for the item is resuming.

Requirements

  Windows NT/2000: Requires Windows 2000 (or Windows NT 4.0 with Internet Explorer 5 or later).
  Windows 95/98: Requires Windows 95 or later (with Internet Explorer 5 or later).
  Header: Declared in Mobsync.h.

See Also

ISyncMgrSynchronize::SetItemStatus