NSIS 函数可以有多个参数吗?
为什么这段代码不能编译?如果我不能为一个函数提供超过 1 个参数,那么我的其他选项是什么(不考虑使用宏)?
编译错误:
函数需要 1 个参数,得到 4 个。用法:函数 function_name
Outfile "test.exe"
Caption ""
Name ""
# Compile Error Here: "Function expects 1 parameters, got 4. Usage: Function function_name"
Function MyFunction p1 p2 p3
DetailPrint "$p1, $p2, $p3"
FunctionEnd
Section
DetailPrint "Hello World"
SectionEnd