rtmp-services-main.c 396 B

12345678910111213141516
  1. #include <util/text-lookup.h>
  2. #include <util/dstr.h>
  3. #include <obs-module.h>
  4. OBS_DECLARE_MODULE()
  5. OBS_MODULE_USE_DEFAULT_LOCALE("rtmp-services", "en-US")
  6. extern struct obs_service_info rtmp_common_service;
  7. extern struct obs_service_info rtmp_custom_service;
  8. bool obs_module_load(void)
  9. {
  10. obs_register_service(&rtmp_common_service);
  11. obs_register_service(&rtmp_custom_service);
  12. return true;
  13. }