shithub: m8c

ref: b956da83f5a7aeefe8f85a6cde0abd1f409fff4d
dir: /src/audio.h/

View raw version
// Copyright 2021 Jonne Kokkonen
// Released under the MIT licence, https://opensource.org/licenses/MIT
#ifndef AUDIO_H
#define AUDIO_H

int audio_init(unsigned int audio_buffer_size, const char *output_device_name);
void toggle_audio(unsigned int audio_buffer_size, const char *output_device_name);
void audio_destroy();

#endif