mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-01-26 15:18:23 -05:00
18 lines
389 B
C
18 lines
389 B
C
#include <obs-module.h>
|
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
extern struct obs_source_info test_random;
|
|
extern struct obs_source_info test_sinewave;
|
|
extern struct obs_source_info test_filter;
|
|
|
|
bool obs_module_load(uint32_t libobs_version)
|
|
{
|
|
obs_register_source(&test_random);
|
|
obs_register_source(&test_sinewave);
|
|
obs_register_source(&test_filter);
|
|
|
|
UNUSED_PARAMETER(libobs_version);
|
|
return true;
|
|
}
|