0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 21:13:04 +02:00
obs-studio/plugins/rtmp-services/rtmp-services-main.c
jp9000 892fdea83e Remove macro to free locale
This functionality can now be handled automatically because locale can
now be freed seaparately from obs_module_unload with
obs_module_free_locale, which is called automatically when the module is
being freed.
2014-07-27 17:29:10 -07:00

17 lines
396 B
C

#include <util/text-lookup.h>
#include <util/dstr.h>
#include <obs-module.h>
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;
}