ma_node_init function

ma_result ma_node_init(
  1. Pointer<ma_node_graph> pNodeGraph,
  2. Pointer<ma_node_config> pConfig,
  3. Pointer<ma_allocation_callbacks> pAllocationCallbacks,
  4. Pointer<Void> pNode,
)

Implementation

ma_result ma_node_init(
  ffi.Pointer<ma_node_graph> pNodeGraph,
  ffi.Pointer<ma_node_config> pConfig,
  ffi.Pointer<ma_allocation_callbacks> pAllocationCallbacks,
  ffi.Pointer<ma_node> pNode,
) => ma_result.fromValue(
  _ma_node_init(pNodeGraph, pConfig, pAllocationCallbacks, pNode),
);