IOfflineFilesSyncErrorInfo::InfoAvailable method (cscobj.h)

Indicates whether information was obtained for the local, remote, or original copy of the item during synchronization.

Syntax

HRESULT InfoAvailable(
  [out] BOOL *pbLocalInfo,
  [out] BOOL *pbRemoteInfo,
  [out] BOOL *pbOriginalInfo
);

Parameters

[out] pbLocalInfo

Receives TRUE if information was obtained for the local copy of the item during synchronization, or FALSE otherwise. If TRUE, GetLocalInfo can be called to retrieve the information.

[out] pbRemoteInfo

Receives TRUE if information was obtained for the remote copy of the item during synchronization, or FALSE otherwise. If TRUE, GetRemoteInfo can be called to retrieve the information.

[out] pbOriginalInfo

Receives TRUE if information was obtained for the original copy of the item during synchronization, or FALSE otherwise. If TRUE, GetOriginalInfo can be called to retrieve the information.

Return value

Returns S_OK if successful, or an error value otherwise.

Requirements

Requirement Value
Minimum supported client Windows Vista
Minimum supported server Windows Server 2008
Target Platform Windows
Header cscobj.h
DLL CscSvc.dll; CscObj.dll

See also

IOfflineFilesSyncErrorInfo