My Plugin isn't recognized!!! - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4) +---- Forum: Scripting (/forumdisplay.php?fid=39) +----- Forum: Plug-Ins (/forumdisplay.php?fid=28) +------ Thread: My Plugin isn't recognized!!! (/showthread.php?tid=58051) My Plugin isn't recognized!!! by desert_eagle_8 on 04-09-2006 at 09:18 AM
Hello Everybody. RE: My Plugin isn't recognized!!! by J-Thread on 04-09-2006 at 11:11 AM
Tell us...what exactly did you do to install your plugin? RE: My Plugin isn't recognized!!! by desert_eagle_8 on 04-09-2006 at 04:14 PM
I copy my plugin, the .dll file, in the directory \MessengerPlus! 3\Plugins and i add in the register the name of the plugin (what it is view with msn) and the name of the file. RE: My Plugin isn't recognized!!! by Plik on 04-09-2006 at 04:18 PM
Do you return true on Initialise? RE: My Plugin isn't recognized!!! by desert_eagle_8 on 04-09-2006 at 04:37 PM
For initialize, i return true (and it is the only thing there is in my code for this function). RE: My Plugin isn't recognized!!! by J-Thread on 04-09-2006 at 06:32 PM What exact registry key are you adding? RE: My Plugin isn't recognized!!! by RaceProUK on 04-09-2006 at 06:48 PM As it's a C++ plugin, you don't need to do anything with the Registry. RE: My Plugin isn't recognized!!! by desert_eagle_8 on 04-09-2006 at 07:07 PM
if i don't do anything whit the registry, there are nothing in the plugin option in msn. In registry, i put the following line: RE: RE: My Plugin isn't recognized!!! by CookieRevised on 04-09-2006 at 07:15 PM
quote:Which is not what you need to add though.... A stated in the official plugin documentation: The name of the key is the string you want to be shown in Plus! plugin preferences window. But more importantly (and what you did wrong) the value must be the name of your project (thus as set in your project properties) followed by a dot and the class object which contains the Plus! functions. Thus the value is not the filename of your DLL. But is determined by stuff you've set in your project. ----------- This said, I don't know if you need to specify all this at all, since it is in Dev-C++.... The registry adding is only requirement for ActiveX DLL's (VB DLL's) and .NET stuff... RE: My Plugin isn't recognized!!! by RaceProUK on 04-10-2006 at 11:57 AM
quote:I'm guessing it's a COM DLL then. Since it's a C++ DLL, why use COM? Just do it all native. |