hi i want to write a extension manager addin for lotus notes to skip the password prompt. so i just want to know, is it mandatory to have dll name as nextpwd.dll. can i change the name of the dll to myextpwd.dll?
one more thing i have changed the sample extpwd dll to add one more function which accepts the password from my application stores it and then later gives it to ExtHandler. this works fine. but i am getting a gpf when i am calling “EMDeregister”. but if i remove the function added by me everything works fine.
i am using this nextpwd.dll with lotus cpp API
-yogesh
Subject: name of the extension manager addin for lotus notes
You can use any name for the DLL.
Subject: RE: name of the extension manager addin for lotus notes
thanks robone more question, i have changed the sample extpwd dll to add one more function which accepts the password from my application stores it. i am calling this function at the begining of my application to store the password.
then later ExtHandler uses this password. this works fine. but i am getting a gpf when i am calling “EMDeregister”.
but if i remove the function added by me everything works fine.
so do you have any idea why is so? and what i have to change to make it work?
-yogesh
Subject: RE: name of the extension manager addin for lotus notes
If I had an idea about that, I would have told you. I think EMDeregister only requires the correct handle.
Subject: RE: name of the extension manager addin for lotus notes
hi i got it working. actually i was working with multithread application and its just the matter of calling “EMDeregister” before Threadsession.term ().
-yogesh