Archive: How to develope a plugin for NSIS with Dev C++?


How to develope a plugin for NSIS with Dev C++?
Hi,
i'd like to ask how to develope a plugin for NSIS with Dev C++. And how do i pass a variable from plugin to NSIS program? I have look this thread:

http://forums.winamp.com/showthread....hreadid=173485

But i still have no idea.
May anyone give me some guideline?
Thanks a lot.


See "${NSISDIR}\Contrib\ExDLL\" in nsis-2.11-src.tar.bz2


Take one of plug-ins with source code and rename it.
Common way to return value is push it to stack in plug-in and pop in the script. You also have access to $0 - $R9 and some other vars from plug-in (see exdll.h).


Thanks a lot. It's really a great help. Thanks.