AcxPinAddEvents function (acxpin.h)

The AcxPinAddEvents function adds an array of events to the specified pin.

Syntax

NTSTATUS AcxPinAddEvents(
  [in]                     ACXPIN   Pin,
  [in, reads(EventsCount)] ACXEVENT *Events,
  [in]                     ULONG    EventsCount
);

Parameters

[in] Pin

The pin to which the events are added.

[in, reads(EventsCount)] Events

A pointer to an array of ACXEVENT objects to add to the specified Pin.

[in] EventsCount

The number of ACXEVENT objects in the Events array.

Return value

The method returns STATUS_SUCCESS if the operation succeeds. Otherwise, this method might return an appropriate NTSTATUS error code.

Remarks

ACX requirements

Minimum ACX version: 1.0

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

Requirements

Requirement Value
Header acxpin.h
IRQL PASSIVE_LEVEL

See also

  • [acxpin.h header](index.md)