obs-studio/libobs/audio-monitoring/win32/wasapi-monitoring-supported.c
tt2468 6e9644ec15 libobs: Add obs_audio_monitoring_supported()
Currently, ifdefs are used to determine if monitoring is supported.
This is difficult to maintain and restricts plugins from knowing if
monitoring is supported by OBS. This adds a runtime function to fix
that issue.
2021-11-20 20:00:59 -08:00

7 lines
93 B
C

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