fix: added missing ctor declarations

This commit is contained in:
2025-11-18 20:38:51 +01:00
parent e094c35437
commit 9d36ce0f18
2 changed files with 4 additions and 1 deletions

View File

@@ -16,6 +16,9 @@ namespace fxn
struct Impl;
Impl* m_Impl;
FxnManager();
~FxnManager();
public:
static FxnManager& GetInstance();
static void Destroy();

View File

@@ -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)