Audiokinetic's Community Q&A is the forum where users can ask and answer questions within the Wwise and Strata communities. If you would like to get an answer from Audiokinetic's Technical support team, make sure you use the Support Tickets page.

0 votes
Hello,

I have included an external library to my custom Wwise plugin and linked everything so it can be built. But, when I open it in Wwise, it says "Plugin library "C:\...\Plugin.dll" could not be loaded. LoadLibrary failed." and "Plugin won't register because g_pAKPluginList not found." But when I remove the line "#include "library.h", it works fine. Do someone as ever tried it too and encountered the same problem ?

Thank you.
in General Discussion by Guerric C. (100 points)

1 Answer

0 votes
It is a wwise bug. They made a mistake on this line

extern "C" AK_DLLEXPORT AK::PluginRegistration * g_pAKPluginList;

You have to use a patch changing this to

extern "C" AKSOUNDENGINE_API AK::PluginRegistration * g_pAKPluginList; for now
by Dmitriy K. (140 points)
...