ISyncChange::GetFlags method (winsync.h)

Gets flags that are associated with this change.

Syntax

HRESULT GetFlags(
  [out] DWORD *pdwFlags
);

Parameters

[out] pdwFlags

Returns the flags that are associated with this change. This will be a combination of SYNC_CHANGE_FLAG values (See Remarks).

Return value

The possible return codes include, but are not limited to, the values shown in the following table.

Return code Description
S_OK
The method succeeded.
E_POINTER
Invalid pointer.

Remarks

The following table describes the values that the source and destination provider can use for this property.

SYNC_CHANGE_FLAG value Provider Indicates
SYNC_CHANGE_FLAG_DELETED Source or destination The item previously existed in the replica but has been deleted.
SYNC_CHANGE_FLAG_DOES_NOT_EXIST Destination only The item does not exist in the destination replica.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Target Platform Windows
Header winsync.h

See also

ISyncChange Interface