rtmp-services-main.c 312 B

12345678910111213
  1. #include <obs-module.h>
  2. extern struct obs_service_info rtmp_common_service;
  3. extern struct obs_service_info rtmp_custom_service;
  4. bool obs_module_load(uint32_t libobs_ver)
  5. {
  6. obs_register_service(&rtmp_common_service);
  7. obs_register_service(&rtmp_custom_service);
  8. UNUSED_PARAMETER(libobs_ver);
  9. return true;
  10. }