46 lines
719 B
C
46 lines
719 B
C
#include <obs-module.h>
|
|
#include "frontend-tools-config.h"
|
|
|
|
OBS_DECLARE_MODULE()
|
|
OBS_MODULE_USE_DEFAULT_LOCALE("frontend-tools", "en-US")
|
|
|
|
void InitSceneSwitcher();
|
|
void FreeSceneSwitcher();
|
|
|
|
#if defined(_WIN32)
|
|
void InitCaptions();
|
|
void FreeCaptions();
|
|
#endif
|
|
|
|
void InitOutputTimer();
|
|
void FreeOutputTimer();
|
|
|
|
#if ENABLE_SCRIPTING
|
|
void InitScripts();
|
|
void FreeScripts();
|
|
#endif
|
|
|
|
bool obs_module_load(void)
|
|
{
|
|
#if defined(_WIN32)
|
|
InitCaptions();
|
|
#endif
|
|
InitSceneSwitcher();
|
|
InitOutputTimer();
|
|
#if ENABLE_SCRIPTING
|
|
InitScripts();
|
|
#endif
|
|
return true;
|
|
}
|
|
|
|
void obs_module_unload(void)
|
|
{
|
|
#if defined(_WIN32)
|
|
FreeCaptions();
|
|
#endif
|
|
FreeSceneSwitcher();
|
|
FreeOutputTimer();
|
|
#if ENABLE_SCRIPTING
|
|
FreeScripts();
|
|
#endif
|
|
}
|