AcxElementGetId - NtDoc

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

ULONG AcxElementGetId(
  ACXELEMENT Element
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-acxelements-acxelementgetid)

Description

The AcxElementGetId function retrieves the number that represents the element ID for a given ACX element object.

Parameters

Element

An existing, initialized, ACXELEMENT object. For more information about ACX objects, see Summary of ACX Objects.

Return value

Returns the ULONG value that represents the element ID for the specified ACXELEMENT object. Will return AcxElementIdNone if the object has no element ID.

Remarks

Example

Example usage is shown below.

 ULONG id = AcxElementGetId((ACXELEMENT)Mute);

ACX requirements

Minimum ACX version: 1.0

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

See also