obs-studio/plugins/mac-syphon/plugin-main.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
312 B
C
Raw Normal View History

#include <obs-module.h>
OBS_DECLARE_MODULE()
OBS_MODULE_USE_DEFAULT_LOCALE("syphon", "en-US")
2018-09-11 08:51:38 +00:00
MODULE_EXPORT const char *obs_module_description(void)
{
return "Syphon frame sharing";
2018-09-11 08:51:38 +00:00
}
extern struct obs_source_info syphon_info;
bool obs_module_load(void)
{
obs_register_source(&syphon_info);
return true;
}