ma_rb_init function

ma_result ma_rb_init(
  1. int bufferSizeInBytes,
  2. Pointer<Void> pOptionalPreallocatedBuffer,
  3. Pointer<ma_allocation_callbacks> pAllocationCallbacks,
  4. Pointer<ma_rb> pRB,
)

Implementation

ma_result ma_rb_init(
  int bufferSizeInBytes,
  ffi.Pointer<ffi.Void> pOptionalPreallocatedBuffer,
  ffi.Pointer<ma_allocation_callbacks> pAllocationCallbacks,
  ffi.Pointer<ma_rb> pRB,
) => ma_result.fromValue(
  _ma_rb_init(
    bufferSizeInBytes,
    pOptionalPreallocatedBuffer,
    pAllocationCallbacks,
    pRB,
  ),
);