// ntddk.h
NTSYSAPI NTSTATUS RtlIncrementCorrelationVector(
[in, out] PCORRELATION_VECTOR CorrelationVector
);
View the official Windows Driver Kit DDI referenceNo description available.
Increments the specified correlation vector. For a correlation vector of the form X.i, the incremented value is be X.(i+1).
CorrelationVector [in, out]A pointer to a CORRELATION_VECTOR structure that represents the correlation vector to be incremented.
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. |