// acxelements.h
ULONG AcxElementGetId(
ACXELEMENT Element
);
View the official Windows Driver Kit DDI referenceNo description available.
The AcxElementGetId function retrieves the number that represents the element ID for a given ACX element object.
ElementAn existing, initialized, ACXELEMENT object. For more information about ACX objects, see Summary of ACX Objects.
Returns the ULONG value that represents the element ID for the specified ACXELEMENT object. Will return AcxElementIdNone if the object has no element ID.
Example usage is shown below.
ULONG id = AcxElementGetId((ACXELEMENT)Mute);
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.