Platform SDK: Synchronization Manager

ISyncMgrSynchronizeCallback::SynchronizeCompleted

The application must call the ISyncMgrSynchronizeCallback::SynchronizeCompleted method when its ISyncMgrSynchronize::Synchronize method has completed execution.

HRESULT SynchronizeCompleted(
  HRESULT hr           // HRESULT from the ISyncMgrSynchronize::Synchronize method
);

Parameters

hr
[in] Returned result from the ISyncMgrSynchronize::Synchronize method.

Return Values

S_OK
Call was completed successfully.

Remarks

A registered application's handler should return from the ISyncMgrSynchronize::Synchronize method as soon as possible and then call this method to notify the SyncMgr that the synchronization process has completed.

It is acceptable for the registered application's handler to call this method before returning from the ISyncMgrSynchronize::Synchronize method.

The registered application's handler should not call this method if the ISyncMgrSynchronize::Synchronize method returns any value other than S_OK.

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::Synchronize