0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00
obs-studio/plugins/win-wasapi/plugin-main.cpp
2018-09-11 18:28:58 -07:00

19 lines
363 B
C++

#include <obs-module.h>
OBS_DECLARE_MODULE()
OBS_MODULE_USE_DEFAULT_LOCALE("win-wasapi", "en-US")
MODULE_EXPORT const char *obs_module_description(void)
{
return "Windows WASAPI audio input/ouput sources";
}
void RegisterWASAPIInput();
void RegisterWASAPIOutput();
bool obs_module_load(void)
{
RegisterWASAPIInput();
RegisterWASAPIOutput();
return true;
}