mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-04-16 00:13:53 +02:00
14 lines
268 B
C++
14 lines
268 B
C++
|
|
#include <obs-module.h>
|
||
|
|
|
||
|
|
OBS_DECLARE_MODULE()
|
||
|
|
|
||
|
|
extern struct obs_source_info wasapiInput;
|
||
|
|
extern struct obs_source_info wasapiOutput;
|
||
|
|
|
||
|
|
bool obs_module_load(uint32_t libobs_ver)
|
||
|
|
{
|
||
|
|
obs_register_source(&wasapiInput);
|
||
|
|
obs_register_source(&wasapiOutput);
|
||
|
|
return true;
|
||
|
|
}
|