BeginningDev
25th November 2005 12:40 UTC
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.
Instructor
25th November 2005 12:49 UTC
See "${NSISDIR}\Contrib\ExDLL\" in nsis-2.11-src.tar.bz2
Takhir
25th November 2005 12:58 UTC
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).
BeginningDev
26th November 2005 13:59 UTC
Thanks a lot. It's really a great help. Thanks.