RtlIncrementCorrelationVector - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddk.h

NTSYSAPI NTSTATUS RtlIncrementCorrelationVector(
  [in, out] PCORRELATION_VECTOR CorrelationVector
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-ntddk-rtlincrementcorrelationvector)

RtlIncrementCorrelationVector function

Description

Increments the specified correlation vector. For a correlation vector of the form X.i, the incremented value is be X.(i+1).

Parameters

CorrelationVector [in, out]

A pointer to a CORRELATION_VECTOR structure that represents the correlation vector to be incremented.

Return value

Returns an NTSTATUS value that indicates the success of failure of the operation.

Return code Description
STATUS_SUCCESS The correlation vector was successfully incremented.
STATUS_BUFFER_OVERFLOW Incrementing the correlation vector resulted in a buffer overflow because as the incremented value is no longer a valid correlation vector.