ISyncMgrSynchronizeCallback::SynchronizeCompleted method (mobsync.h)

Called by an application when its Synchronize method is complete.

Syntax

HRESULT SynchronizeCompleted(
  [in] HRESULT hr
);

Parameters

[in] hr

Type: HRESULT

The returned result from the Synchronize method.

Return value

Type: HRESULT

This method can return one of these values.

Return code Description
S_OK
The call is completed successfully.

Remarks

A registered handler of an application should return from the Synchronize method as soon as possible, and then call this method to notify the synchronization manager that the synchronization process is complete.

It is acceptable for a registered handler of an application to call this method before returning from the Synchronize method.

However, the registered handler of an application should not call this method if the Synchronize method returns any value that is different from S_OK.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header mobsync.h
DLL Mobsync.dll

See also

ISyncMgrSynchronizeCallback

Synchronize