19 lines
363 B
C++
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;
|
|
}
|