SYNC_CHANGE_FLAG Flags

Flags that specify the item change state.

Syntax

#define SYNC_CHANGE_FLAG_DELETED                 0x00000001
#define SYNC_CHANGE_FLAG_DOES_NOT_EXIST          0x00000002
#define SYNC_CHANGE_FLAG_GHOST                   0x00000004

Members

  • SYNC_CHANGE_FLAG_DELETED
    The item has been deleted. Therefore, this change is a tombstone.

  • SYNC_CHANGE_FLAG_DOES_NOT_EXIST
    The item does not exist and should only be used in an enumeration from the destination for conflict detection.

  • SYNC_CHANGE_FLAG_GHOST
    The item has recently moved out of the filter.

Remarks

Be aware that SYNC_CHANGE_FLAG_DOES_NOT_EXIST cannot be combined with any other flags.

Requirements

Header: Synchronization.h

See Also

Concepts

Sync Framework Core Components