ISyncSessionState::GetForgottenKnowledgeRecoveryRangeStart

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


HRESULT GetForgottenKnowledgeRecoveryRange(
  BYTE * pbRangeStart,
  DWORD * pcbRangeStart);

pbRangeStart

[in, out, unique, size_is(*pcbRangeStart)] Returns the lower bound of the recovery range when the session is performing forgotten knowledge recovery.

pcbRangeStart

[in, out] 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.

  • S_OK

  • E_POINTER

  • HRESULT_FROM_WIN32(ERROR_MORE_DATA) when pcbRangeStart is too small. In this case, the required number of bytes is returned in pcbRangeStart.

Show: