| 12345678910111213141516 | 
							- #include <obs-module.h>
 
- OBS_DECLARE_MODULE()
 
- OBS_MODULE_USE_DEFAULT_LOCALE("syphon", "en-US")
 
- MODULE_EXPORT const char *obs_module_description(void)
 
- {
 
- 	return "Syphon frame sharing";
 
- }
 
- extern struct obs_source_info syphon_info;
 
- bool obs_module_load(void)
 
- {
 
- 	obs_register_source(&syphon_info);
 
- 	return true;
 
- }
 
 
  |