loadWavFromSpec method

Pointer<SdlAudioSpec> loadWavFromSpec(
  1. int freesrc,
  2. Pointer<SdlAudioSpec> spec,
  3. Pointer<Pointer<Uint8>> audioBuf,
  4. Pointer<Uint32> audioLen,
)

Implementation

Pointer<SdlAudioSpec> loadWavFromSpec(int freesrc, Pointer<SdlAudioSpec> spec,
    Pointer<Pointer<Uint8>> audioBuf, Pointer<Uint32> audioLen) {
  // 708
  return sdlLoadWavRw(this, freesrc, spec, audioBuf, audioLen);
}