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

22 lines
368 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")
void RegisterWASAPIInput();
void RegisterWASAPIOutput();
bool obs_module_load(uint32_t libobs_ver)
{
2014-05-30 03:09:31 -07:00
UNUSED_PARAMETER(libobs_ver);
RegisterWASAPIInput();
RegisterWASAPIOutput();
return true;
}
2014-07-09 22:12:57 -07:00
void obs_module_unload(void)
{
OBS_MODULE_FREE_DEFAULT_LOCALE();
}