Hi All,
I Create a Basic dynamic dll S60 2nd Edition FP1.
Dll is created in F:\Symbian\7.0s\Series60_v21_CW\Epoc32\release\winscw\udeb\
i am trying to load dll dynamically
RLibrary library;
TBuf<KMaxFileName> szSettingsDll;
szSettingsDll.Copy(SETTINGS_DLL);
iErr = library.Load(szSettingsDll);
if (KErrNone != iErr)
{
return EFalse;
}
TLibraryFunction DllFun = library.Lookup(3);
if (NULL == DllFun)
{
library.Close();
return EFalse;
}
this is giving me panic KERN EXEC -3 on emulator.
Can you please solve this problem.
Regards,
Swapnil

Reply With Quote

