2014-03-04 06:07:13 -08:00
|
|
|
#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
|
|
|
}
|
2014-03-04 06:07:13 -08:00
|
|
|
|
2014-03-07 05:55:21 -08:00
|
|
|
void RegisterWASAPIInput();
|
|
|
|
void RegisterWASAPIOutput();
|
2014-03-04 06:07:13 -08:00
|
|
|
|
2014-07-27 12:42:43 -07:00
|
|
|
bool obs_module_load(void)
|
2014-03-04 06:07:13 -08:00
|
|
|
{
|
2014-03-07 05:55:21 -08:00
|
|
|
RegisterWASAPIInput();
|
|
|
|
RegisterWASAPIOutput();
|
2014-03-04 06:07:13 -08:00
|
|
|
return true;
|
|
|
|
}
|