A question regarding how to call a function
Suppose a function is defined in C++ as void foo(int& x). Assume foo is defined in fooLib.dll. I tried to call System::call "fooLib::foo(i.r0) in nsis. But I couldn't get value of x assigned within the function foo. How to call foo correctly in nsis? Thanks.