// ntddk.h
NTSYSAPI NTSTATUS RtlExtendCorrelationVector(
[in, out] PCORRELATION_VECTOR CorrelationVector
);
View the official Windows Driver Kit DDI referenceNo description available.
This routine extends the supplied correlation vector. For a correlation vector of the form X.i, the extended value is X.i.0.
CorrelationVector [in, out]A pointer to a CORRELATION_VECTOR structure that represents the correlation vector to be extended.
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_INVALID_PARAMETER | Extending the correlation vector resulted in a buffer overflow because as the extended value is no longer a valid correlation vector. |