ISyncMgrControl::StartSyncAll method (syncmgr.h)
Synchronizes all items managed by all handlers.
Syntax
HRESULT StartSyncAll(
[in] HWND hwndOwner
);
Parameters
[in] hwndOwner
Type: HWND
A handle to a window that can be used by a handler or item to display any necessary UI. This value can be NULL.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Remarks
This method is analogous to UpdateAll.
Examples
The following example shows the usage of ISyncMgrControl::StartSyncAll by a handler's procedure.
void CMyDeviceHandler::MiscProc(...)
{
...
// Get the Sync Center control object.
ISyncMgrControl *pControl = NULL;
hr = CoCreateInstance(CLSID_SyncMgrControl,
CLSCTX_SERVER,
IID_PPV_ARGS(&pControl));
if (SUCCEEDED(hr))
{
// Synchronize all sync items for all sync handlers.
hr = pControl->StartSyncAll(_hwnd);
pControl->Release();
}
...
}
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista [desktop apps only] |
Minimum supported server | Windows Server 2008 [desktop apps only] |
Target Platform | Windows |
Header | syncmgr.h |