obs-studio/libobs/audio-monitoring/win32/wasapi-monitoring-available.c
tt2468 167f539416 libobs: Rename obs_audio_monitoring_supported to _available
With the reasonable possibility of monitoring support becoming a
runtime check, the phrase `available` is more fitting.
2021-12-22 02:43:14 -08:00

7 lines
93 B
C

#include "../../obs-internal.h"
bool obs_audio_monitoring_available(void)
{
return true;
}