SYNCMGRSTATUS enumeration (mobsync.h)

Used in the ISyncMgrSynchronize::SetItemStatus method to specify the updated status for the item.

Syntax

typedef enum _tagSYNCMGRSTATUS {
  SYNCMGRSTATUS_STOPPED = 0,
  SYNCMGRSTATUS_SKIPPED = 0x1,
  SYNCMGRSTATUS_PENDING = 0x2,
  SYNCMGRSTATUS_UPDATING = 0x3,
  SYNCMGRSTATUS_SUCCEEDED = 0x4,
  SYNCMGRSTATUS_FAILED = 0x5,
  SYNCMGRSTATUS_PAUSED = 0x6,
  SYNCMGRSTATUS_RESUMING = 0x7,
  SYNCMGRSTATUS_UPDATING_INDETERMINATE = 0x8,
  SYNCMGRSTATUS_DELETED = 0x100
} SYNCMGRSTATUS;

Constants

 
SYNCMGRSTATUS_STOPPED
Value: 0
Synchronization has been stopped.
SYNCMGRSTATUS_SKIPPED
Value: 0x1
Indicates that this item should be skipped.
SYNCMGRSTATUS_PENDING
Value: 0x2
Synchronization for the item is pending.
SYNCMGRSTATUS_UPDATING
Value: 0x3
The item is currently being synchronized.
SYNCMGRSTATUS_SUCCEEDED
Value: 0x4
The synchronization for the item succeeded.
SYNCMGRSTATUS_FAILED
Value: 0x5
Synchronization for the item failed.
SYNCMGRSTATUS_PAUSED
Value: 0x6
Synchronization for the item paused.
SYNCMGRSTATUS_RESUMING
Value: 0x7
Synchronization for the item is resuming.
SYNCMGRSTATUS_UPDATING_INDETERMINATE
Value: 0x8
Windows Vista and later. Shows marquee progress for the synchronized item. Sets the progress bar in the folder to marquee the synchronization progress.
SYNCMGRSTATUS_DELETED
Value: 0x100
The item has been deleted. This value has been deprecated for Windows Vista and later.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header mobsync.h

See also

ISyncMgrSynchronize::SetItemStatus