ma_decoder_init_memory function

ma_result ma_decoder_init_memory(
  1. Pointer<Void> pData,
  2. int dataSize,
  3. Pointer<ma_decoder_config> pConfig,
  4. Pointer<ma_decoder> pDecoder,
)

Implementation

ma_result ma_decoder_init_memory(
  ffi.Pointer<ffi.Void> pData,
  int dataSize,
  ffi.Pointer<ma_decoder_config> pConfig,
  ffi.Pointer<ma_decoder> pDecoder,
) => ma_result.fromValue(
  _ma_decoder_init_memory(pData, dataSize, pConfig, pDecoder),
);