2017-06-28 21:21:42 +00:00
|
|
|
/*
|
|
|
|
* Modern effects for a modern Streamer
|
|
|
|
* Copyright (C) 2017 Michael Fabian Dirks
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2019-01-14 10:23:21 +00:00
|
|
|
#include "plugin.hpp"
|
2019-02-11 02:54:16 +00:00
|
|
|
#include "obs/obs-source-tracker.hpp"
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2019-08-04 14:20:26 +00:00
|
|
|
std::list<std::function<void()>> initializer_functions;
|
|
|
|
std::list<std::function<void()>> finalizer_functions;
|
2017-11-05 19:05:48 +00:00
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
MODULE_EXPORT bool obs_module_load(void)
|
|
|
|
{
|
2018-11-08 10:16:33 +00:00
|
|
|
P_LOG_INFO("Loading Version %u.%u.%u (Build %u)", PROJECT_VERSION_MAJOR, PROJECT_VERSION_MINOR,
|
2018-11-07 14:24:25 +00:00
|
|
|
PROJECT_VERSION_PATCH, PROJECT_VERSION_TWEAK);
|
2019-01-27 21:43:49 +00:00
|
|
|
obs::source_tracker::initialize();
|
2019-08-04 14:20:26 +00:00
|
|
|
for (auto func : initializer_functions) {
|
2017-11-05 19:05:48 +00:00
|
|
|
func();
|
|
|
|
}
|
2017-06-28 21:21:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
MODULE_EXPORT void obs_module_unload(void)
|
|
|
|
{
|
2018-11-08 10:16:33 +00:00
|
|
|
P_LOG_INFO("Unloading Version %u.%u.%u (Build %u)", PROJECT_VERSION_MAJOR, PROJECT_VERSION_MINOR,
|
2018-11-07 14:24:25 +00:00
|
|
|
PROJECT_VERSION_PATCH, PROJECT_VERSION_TWEAK);
|
2019-08-04 14:20:26 +00:00
|
|
|
for (auto func : finalizer_functions) {
|
2017-11-05 19:05:48 +00:00
|
|
|
func();
|
|
|
|
}
|
2019-01-27 21:43:49 +00:00
|
|
|
obs::source_tracker::finalize();
|
2017-06-28 21:21:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2019-01-14 10:23:21 +00:00
|
|
|
// Windows Only
|
|
|
|
extern "C" {
|
2017-06-28 21:21:42 +00:00
|
|
|
#include <windows.h>
|
2019-01-14 10:23:21 +00:00
|
|
|
}
|
2017-06-28 21:21:42 +00:00
|
|
|
|
2018-11-07 14:24:25 +00:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE, DWORD, LPVOID)
|
|
|
|
{
|
2017-06-28 21:21:42 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
#endif
|