Skip to content
⌘ NSIS Forum Archive

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

4 posts

BeginningDev#

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:

Are you a developer who uses NSIS to distribute your application? Are you a Winamp plug-in developer who wants to use NSIS to distribute your plug-in? Have suggestions for other people like you? This is the place.


But i still have no idea.
May anyone give me some guideline?
Thanks a lot.
Takhir#
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).