// acxpin.h
typedef struct _ACX_PHYSICAL_CONNECTION {
ULONG Size;
ULONG Flags;
union {
ACXPIN Object;
ULONG Id;
} FromPin;
WDFSTRING TargetName;
ULONG TargetPinId;
} ACX_PHYSICAL_CONNECTION, *PACX_PHYSICAL_CONNECTION;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_PHYSICAL_CONNECTION structure describes a physical audio connection between two ACXCIRCUIT objects.
SizeThe size of all of the data in the ACX_PHYSICAL_CONNECTION structure in bytes.
FlagsA value from the ACX_PHYSICAL_CONNECTION_FLAGS enum that specifies the type of physical connection.
FromPinA union that identifies the from pin of the physical connection.
FromPin.ObjectAn ACXPIN object used to identify the FromPin.
FromPin.IdThe ID used to identify the FromPin.
TargetNameA string containing the name of the target pin.
TargetPinIdThe ID of the target pin.
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.