Archive: plugin written in assembly


plugin written in assembly
hi all,

does anybody have the source code of a working plugin written in assembly language?

Any help will be appreciated deeply.


You have http://nsis.svn.sourceforge.net/view...92&view=markup

A plugin is just a normal win32 dll with (cdecl) function exports, take a look at the C sample, it should contain all the information you need...


You could always disassemble too. You could make a debug build of a DLL and insert a breakpoint and then run that (use VS's Attach to process option). I have done that in the past to make some optimisations via inline assembly in C code to gain extra marks in my Uni degree :).

Stu