ACX_RTPACKET_INIT - NtDoc

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

VOID ACX_RTPACKET_INIT(
  PACX_RTPACKET RtPacket
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxstreams-acx_rtpacket_init)

Description

The ACX_RTPACKET_INIT function initializes the ACX RT packet structure.

Parameters

RtPacket

An ACX_RTPACKET structure.

Remarks

Example

    packets = (PACX_RTPACKET)ExAllocatePool2(POOL_FLAG_NON_PAGED, packetsSize, DRIVER_TAG);
    RETURN_NTSTATUS_IF_TRUE(!packets, STATUS_NO_MEMORY);

    ...

        ACX_RTPACKET_INIT(&packets[i]);

ACX requirements

Minimum ACX version: 1.0

For more information about ACX versions, see ACX version overview.

See also