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

15 lines
252 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(void)
{
RegisterWASAPIInput();
RegisterWASAPIOutput();
return true;
}