我正在尝试使用 NSIS 功能StrStr
,但出现以下错误:
!insertmacro: macro "FUNCTION_STRING_StrStr" requires 0 parameter(s), passed 3!
文档指定您应该为此函数传递 3 个参数,这与上面的编译错误相反。
那么我为 NSIS 函数使用多少个参数StrStr
呢?
我的代码:
!include "StrFunc.nsh"
!include "LogicLib.nsh"
InstallDir "abc"
Name "def"
OutFile "def.exe"
Section
${StrStr} $R9 "How to find it" "find it"
SectionEnd