#include #include #include OBS_DECLARE_MODULE() OBS_MODULE_USE_DEFAULT_LOCALE("rtmp-services", "en-US") extern struct obs_service_info rtmp_common_service; extern struct obs_service_info rtmp_custom_service; bool obs_module_load(void) { obs_register_service(&rtmp_common_service); obs_register_service(&rtmp_custom_service); return true; }