/
githubmirror
/
obs-studio
Обзор
Документация
Войти
/
githubmirror
/
obs-studio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
plugins/mac-syphon/plugin-main.c
16 строк
312 B
Colin Edwards
syphon: Remove references to game capture
29 янв 2019, 23:23
29 янв 2019, 23:23
cda5799
Код
Авторство
О чём код?
#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; }