From 9d36ce0f183c7353bfe9a3e11d86065132849b42 Mon Sep 17 00:00:00 2001 From: slayercio Date: Tue, 18 Nov 2025 20:38:51 +0100 Subject: [PATCH] fix: added missing ctor declarations --- src/detail/fxn.hpp | 3 +++ src/impl/dllmain.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/detail/fxn.hpp b/src/detail/fxn.hpp index 4e7ea0e..12a7e54 100644 --- a/src/detail/fxn.hpp +++ b/src/detail/fxn.hpp @@ -16,6 +16,9 @@ namespace fxn struct Impl; Impl* m_Impl; + FxnManager(); + ~FxnManager(); + public: static FxnManager& GetInstance(); static void Destroy(); diff --git a/src/impl/dllmain.cpp b/src/impl/dllmain.cpp index f2de87c..41b7e8c 100644 --- a/src/impl/dllmain.cpp +++ b/src/impl/dllmain.cpp @@ -5,7 +5,7 @@ DWORD WINAPI ThreadProc(LPVOID lpParameter) { auto& fxnManager = fxn::FxnManager::GetInstance(); - fxnManager.Initialize(); + return TRUE; } BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)