My Own C++ dll - 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) +----- Thread: My Own C++ dll (/showthread.php?tid=90502) My Own C++ dll by TheSte on 05-04-2009 at 05:49 PM
Hi all...I know there are a lot of similar threads but I haven't understood this yet... code: the building is ok...but when I load it with plus it says: "Bad calling convention detected for "somma" in "C:\Program Files\Messenger Plus! Live\Scripts\nomi\dll.dll". The function must be declared with __stdcall and called with the appropriate number of parameter." How I can declare it with __stdcall ? sorry this is the js code code: RE: My Own C++ dll by mezzanine on 05-04-2009 at 06:04 PM
code: RE: My Own C++ dll by TheSte on 05-04-2009 at 06:31 PM
Thank u RE: My Own C++ dll by TheSteve on 05-07-2009 at 01:11 AM If you remove the __declspec(dllexport) then use a .def file, the name will remain in a readable format. RE: My Own C++ dll by TheSte on 05-10-2009 at 02:07 PM how can I create a .def? RE: My Own C++ dll by segosa on 05-10-2009 at 08:05 PM
... RE: My Own C++ dll by TheSteve on 05-11-2009 at 05:16 AM
Right. For VC6, you just create a new text file and save it as <projectname>.def code: RE: My Own C++ dll by TheSte on 05-11-2009 at 12:19 PM ok thanks a lot ; ) |