nsisArray usage insude function
I'm sorry I'm really looking at a steep learning curve :D
What do I need to change to make it possible to push a value on the array inside a function. My code roughly looks like:
!include NSISArray.nsh
${Array} "TestArray"
Section "Dummy Section" SecDummy
${TestArray->Init}
Call TestFunction
${TestArray->Debug} ; Show the array after the changes
${TestArray->Delete}
${ArrayUnload}
SectionEnd
Function TestFunction
ClearErrors
; function uses all R0..R8
; logic here...
${TestArray->push} "$R6"
FunctionEnd