AcxPinAddEvents - NtDoc

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

NTSTATUS AcxPinAddEvents(
  [in]                     ACXPIN   Pin,
  [in, reads(EventsCount)] ACXEVENT *Events,
  [in]                     ULONG    EventsCount
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxpin-acxpinaddevents)

Description

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

Parameters

Pin [in]

The pin to which the events are added.

Events [in, reads(EventsCount)]

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

EventsCount [in]

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.

See also