// ntddk.h
NTSYSAPI NTSTATUS RtlInitializeCorrelationVector(
[in, out] PCORRELATION_VECTOR CorrelationVector,
[in] int Version,
[in] const GUID *Guid
);
View the official Windows Driver Kit DDI referenceNo description available.
Initializes the specified correlation vector with the supplied GUID.
CorrelationVector [in, out]A pointer to a CORRELATION_VECTOR structure that represents the correlation vector to be initialized.
Version [in]The version of the correlation vector. Possible values are:
Guid [in]The GUID to initialize the correlation vector. The first 22 bytes of the correlation vector are a base64 representation of the GUID. This value must not be NULL.
Returns an NTSTATUS value that indicates the success of failure of the operation.
| Return code | Description |
|---|---|
| STATUS_SUCCESS | The correlation vector was successfully initialized. |
| STATUS_INVALID_PARAMETER | The supplied GUID is null. |