AcxStreamGetNotificationId - NtDoc

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

GUID AcxStreamGetNotificationId(
  [in] ACXSTREAM Stream
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

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

Description

The AcxStreamGetNotificationId function retrieves the Plug and Play notification ID for the specified audio stream.

Parameters

Stream [in]

The ACX stream object for which to retrieve the Plug and Play notification ID.

Return value

Returns a GUID containing the Plug and Play notification ID for the object specified by the Stream parameter.

Remarks

Example

Example usage is shown below.

...
    _In_ ACXSTREAM Stream,
...

    GUID        notificationId;
...

    notificationId = AcxStreamGetNotificationId(Stream);

ACX requirements

Minimum ACX version: 1.1

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

See also