2014-08-23 15:58:35 -07:00
|
|
|
#include <obs-module.h>
|
|
|
|
|
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("syphon", "en-US")
|
2018-09-11 01:51:38 -07:00
|
|
|
MODULE_EXPORT const char *obs_module_description(void)
|
|
|
|
{
|
|
|
|
return "Syphon based game capture for macOS";
|
|
|
|
}
|
2014-08-23 15:58:35 -07:00
|
|
|
|
|
|
|
extern struct obs_source_info syphon_info;
|
|
|
|
|
|
|
|
bool obs_module_load(void)
|
|
|
|
{
|
|
|
|
obs_register_source(&syphon_info);
|
|
|
|
return true;
|
|
|
|
}
|