obs-studio/plugins/win-wasapi/plugin-main.cpp

19 lines
364 B
C++
Raw Normal View History

#include <obs-module.h>
OBS_DECLARE_MODULE()
2014-07-09 22:12:57 -07:00
OBS_MODULE_USE_DEFAULT_LOCALE("win-wasapi", "en-US")
2018-09-11 01:51:38 -07:00
MODULE_EXPORT const char *obs_module_description(void)
{
2019-08-13 22:54:28 -07:00
return "Windows WASAPI audio input/output sources";
2018-09-11 01:51:38 -07:00
}
void RegisterWASAPIInput();
void RegisterWASAPIOutput();
bool obs_module_load(void)
{
RegisterWASAPIInput();
RegisterWASAPIOutput();
return true;
}