ma_node_attach_output_bus function

ma_result ma_node_attach_output_bus(
  1. Pointer<Void> pNode,
  2. Dartma_uint32 outputBusIndex,
  3. Pointer<Void> pOtherNode,
  4. Dartma_uint32 otherNodeInputBusIndex,
)

Implementation

ma_result ma_node_attach_output_bus(
  ffi.Pointer<ma_node> pNode,
  Dartma_uint32 outputBusIndex,
  ffi.Pointer<ma_node> pOtherNode,
  Dartma_uint32 otherNodeInputBusIndex,
) => ma_result.fromValue(
  _ma_node_attach_output_bus(
    pNode,
    outputBusIndex,
    pOtherNode,
    otherNodeInputBusIndex,
  ),
);