shithub: cstory

ref: 72a5f366547e12cab97eca00df1a09d4e178033e
dir: /src/Backends/Audio/SoftwareMixer/Backend.h/

View raw version
#pragma once

#include <stddef.h>

unsigned long SoftwareMixerBackend_Init(void (*callback)(long *stream, size_t frames_total));
void SoftwareMixerBackend_Deinit(void);

bool SoftwareMixerBackend_Start(void);

void SoftwareMixerBackend_LockMixerMutex(void);
void SoftwareMixerBackend_UnlockMixerMutex(void);

void SoftwareMixerBackend_LockOrganyaMutex(void);
void SoftwareMixerBackend_UnlockOrganyaMutex(void);