ISyncSessionState::GetForgottenKnowledgeRecoveryRangeStart method (winsync.h)

Gets the lower bound of the recovery range when the session is performing forgotten knowledge recovery.

Syntax

HRESULT GetForgottenKnowledgeRecoveryRangeStart(
  [in, out] BYTE  *pbRangeStart,
  [in, out] DWORD *pcbRangeStart
);

Parameters

[in, out] pbRangeStart

Returns the lower bound of the recovery range when the session is performing forgotten knowledge recovery.

[in, out] pcbRangeStart

Specifies the number of bytes in pbRangeStart. Returns the number of bytes required to retrieve the range value when pcbRangeStart is too small, or the number of bytes written.

Return value

The possible return codes include, but are not limited to, the values shown in the following table.

Return code Description
S_OK
The method succeeded.
E_POINTER
Invalid pointer.
HRESULT_FROM_WIN32(ERROR_MORE_DATA)
pcbRangeStart is too small. In this case, the required number of bytes is returned in pcbRangeStart.

Requirements

Requirement Value
Minimum supported client Windows 7 [desktop apps only]
Minimum supported server Windows Server 2008 R2 [desktop apps only]
Target Platform Windows
Header winsync.h

See also

ISyncSessionState Interface