NSIS 加载 NPAPI 插件
我有一个 NPAPI 插件!
如何使用 NSIS 安装程序注册 dll?我尝试了这个,编译器给出了错误:
# define the name of the installer
outfile "simple installer.exe"
RegDLL plugin.dll
sectionEnd
错误是:
错误:命令 RegDLL 在部分或函数之外无效 脚本“C:\Program Files\NSIS\test01.nsi”第 4 行出错——中止创建过程
i have a NPAPI plugin !
How do i register the dll with an NSIS installer ? I tried this and it the compiler gives errors:
# define the name of the installer
outfile "simple installer.exe"
RegDLL plugin.dll
sectionEnd
The error is :
Error: command RegDLL not valid outside Section or Function
Error in script "C:\Program Files\NSIS\test01.nsi" on line 4 -- aborting creation process
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RegDLL 用于导出 DllRegisterServer 函数的 DLL。它通常由 COM DLL 使用。
您可以使用 NSIS 注册表函数向 Firefox 注册插件:
。但如果您的 NPAPI 插件实际上有 DllRegisterServer 导出,您可以使用 RegDLL...
RegDLL is for DLL's that export the DllRegisterServer function. It is usually used by COM DLL's.
You can register a plugin with firefox by using the NSIS registry functions:
..but if your NPAPI plugin actually has a DllRegisterServer export, you could use RegDLL...