Shoutbox

Making Plugins in ASM - 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: Making Plugins in ASM (/showthread.php?tid=35027)

Making Plugins in ASM by Ash_ on 11-30-2004 at 03:40 AM

how do i go about making a plugin for plus in ASM im using the mASM32 compiler

would you use the C++ plugin setup and use the asm()  with an if statement to parse the tags?

looking forward to a reply thanks in advance?


RE: Making Plugins in ASM by Patchou on 11-30-2004 at 11:14 PM

Youcan surely use an asm() section in Visual C++ to code yoru plugin in ASM, as long as the exports of your DLL as correct (your function prototypes rest unchanged), you're free to code it the way you want inside Visual C++ :)


RE: Making Plugins in ASM by Ash_ on 12-01-2004 at 01:38 AM

thanks patchou.


RE: Making Plugins in ASM by Banks on 12-01-2004 at 08:23 PM

Ash_, Pathcou was talking about the asm function built into visual C++ it wouldn't work with masm.

I'm not positive but I think you can just put

code:
FUNCTIONNAME PROTO :DWORD, :DWORD
than call those functions in your assembly program
RE: Making Plugins in ASM by Ash_ on 12-02-2004 at 03:57 AM

thanks Banks. i was using the Dev - C++ compiler with the asm sub. ill have a muck around with your idea though. thankyou