Page 1 of 1
Posted: 21 Jan 2016, 19:42
by oli_lab
since I update to last SDK, I have this error
error LNK2001: symbole externe non résolu "void __cdecl GetBrowserInfo(struct ModuleInfo *)" (?GetBrowserInfo@@YAXPEAUModuleInfo@@@Z)
I'm using visual studio 2013
Posted: 21 Jan 2016, 19:53
by oli_lab
I reverted to the previous SDK version and it is not working either.

Posted: 21 Jan 2016, 23:48
by martignasse
seems like you dont provide the GetBrowserInfo globale function implementation
something like this in your module cpp file
Code: Select all
// module constants for browser info and module info
const AnsiCharPtr UserModuleBase::MODULE_NAME = "DelayArr";
const AnsiCharPtr UserModuleBase::MODULE_DESC = "Delay Array";
const AnsiCharPtr UserModuleBase::MODULE_VERSION = "2.0";
// browser info
void GetBrowserInfo(ModuleInfo* pModuleInfo)
{
pModuleInfo->Name = UserModuleBase::MODULE_NAME;
pModuleInfo->Description = UserModuleBase::MODULE_DESC;
pModuleInfo->Version = UserModuleBase::MODULE_VERSION;
}
look in sdk modules sources for examples
Posted: 22 Jan 2016, 15:18
by oli_lab
thank you very much, it is working.
