RtlInitializeCorrelationVector - NtDoc

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

NTSYSAPI NTSTATUS RtlInitializeCorrelationVector(
  [in, out] PCORRELATION_VECTOR CorrelationVector,
  [in]      int                 Version,
  [in]      const GUID          *Guid
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

RtlInitializeCorrelationVector function

Description

Initializes the specified correlation vector with the supplied GUID.

Parameters

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.

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 initialized.
STATUS_INVALID_PARAMETER The supplied GUID is null.

See also

CORRELATION_VECTOR