ISyncMgrSyncItemInfo::GetLastSyncTime method (syncmgr.h)

Gets the date and time when the item was last synchronized.

Syntax

HRESULT GetLastSyncTime(
  [out] FILETIME *pftLastSync
);

Parameters

[out] pftLastSync

Type: FILETIME*

When this method returns, contains a pointer to a FILETIME structure containing the date and time information.

Return value

Type: HRESULT

Returns S_OK if successful, or an error value otherwise. If the method fails, pftLastSync points to the value from the previous synchronization.

Remarks

This value is not displayed in the folder UI by default, but is available as the System.Sync.DateSynchronized (PKEY_Sync_DateSynchronized) property.

Sync Center calls this method whenever the UpdateItem method is called.

Examples

The following example shows an implementation of this method that calls a private class function to retrieve the time and date.

STDMETHODIMP CMyDeviceSyncItem::GetLastSyncTime(__out FILETIME *pftLastSync)
{
    *pftLastSync = _ftLastSync;
    return S_OK;
}

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