From 86b607154a98a981f277ec33f70776eb52b160af Mon Sep 17 00:00:00 2001 From: jpark37 Date: Sun, 26 Sep 2021 04:19:05 -0700 Subject: [PATCH] UI: Add support for real-time work queue --- UI/obs-app.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/UI/obs-app.cpp b/UI/obs-app.cpp index 496583fd1..f9d74edd8 100644 --- a/UI/obs-app.cpp +++ b/UI/obs-app.cpp @@ -2689,6 +2689,14 @@ int main(int argc, char *argv[]) SetErrorMode(SEM_FAILCRITICALERRORS); load_debug_privilege(); base_set_crash_handler(main_crash_handler, nullptr); + + const HMODULE hRtwq = LoadLibrary(L"RTWorkQ.dll"); + if (hRtwq) { + typedef HRESULT(STDAPICALLTYPE * PFN_RtwqStartup)(); + PFN_RtwqStartup func = + (PFN_RtwqStartup)GetProcAddress(hRtwq, "RtwqStartup"); + func(); + } #endif base_get_log_handler(&def_log_handler, nullptr); @@ -2828,6 +2836,16 @@ int main(int argc, char *argv[]) curl_global_init(CURL_GLOBAL_ALL); int ret = run_program(logFile, argc, argv); +#ifdef _WIN32 + if (hRtwq) { + typedef HRESULT(STDAPICALLTYPE * PFN_RtwqShutdown)(); + PFN_RtwqShutdown func = + (PFN_RtwqShutdown)GetProcAddress(hRtwq, "RtwqShutdown"); + func(); + FreeLibrary(hRtwq); + } +#endif + blog(LOG_INFO, "Number of memory leaks: %ld", bnum_allocs()); base_set_log_handler(nullptr, nullptr); return ret;