fix: added missing ctor declarations
This commit is contained in:
@@ -16,6 +16,9 @@ namespace fxn
|
|||||||
struct Impl;
|
struct Impl;
|
||||||
Impl* m_Impl;
|
Impl* m_Impl;
|
||||||
|
|
||||||
|
FxnManager();
|
||||||
|
~FxnManager();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static FxnManager& GetInstance();
|
static FxnManager& GetInstance();
|
||||||
static void Destroy();
|
static void Destroy();
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ DWORD WINAPI ThreadProc(LPVOID lpParameter)
|
|||||||
{
|
{
|
||||||
auto& fxnManager = fxn::FxnManager::GetInstance();
|
auto& fxnManager = fxn::FxnManager::GetInstance();
|
||||||
|
|
||||||
fxnManager.Initialize();
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
|
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ulReason, LPVOID lpReserved)
|
||||||
|
|||||||
Reference in New Issue
Block a user