Tao.Sdl SDK Documentation

Sdl.SDL_FreeWAV Method 

Frees previously opened WAV data.

[Visual Basic]
Public Shared Sub SDL_FreeWAV( _
   ByRef audio_buf As IntPtr _
)
[C#]
public static void SDL_FreeWAV(
   ref IntPtr audio_buf
);

Parameters

audio_buf

Remarks

After a WAVE file has been opened with SDL_LoadWAV its data can eventually be freed with SDL_FreeWAV. audio_buf is a pointer to the buffer created by SDL_LoadWAV.

            void SDL_FreeWAV(Uint8 *audio_buf)
            

See Also

Sdl Class | Tao.Sdl Namespace | SDL_LoadWAV