2014-07-09 22:12:57 -07:00
|
|
|
#include <util/text-lookup.h>
|
|
|
|
#include <util/dstr.h>
|
2014-04-19 20:54:18 -07:00
|
|
|
#include <obs-module.h>
|
|
|
|
|
2014-07-09 22:12:57 -07:00
|
|
|
OBS_DECLARE_MODULE()
|
|
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("rtmp-services", "en-US")
|
|
|
|
|
2014-04-19 20:54:18 -07:00
|
|
|
extern struct obs_service_info rtmp_common_service;
|
|
|
|
extern struct obs_service_info rtmp_custom_service;
|
|
|
|
|
2014-07-27 12:42:43 -07:00
|
|
|
bool obs_module_load(void)
|
2014-04-19 20:54:18 -07:00
|
|
|
{
|
|
|
|
obs_register_service(&rtmp_common_service);
|
|
|
|
obs_register_service(&rtmp_custom_service);
|
|
|
|
return true;
|
|
|
|
}
|