I saw the general documentation regarding this subject, but to be honest I still don't understand how to do it.
So, let's say I have the following dll function written in C++ Builder (mydll.dll):
How do I call this dll function from NSIS script? Return value should be stored somewhere so I can later check it.extern "C" __declspec(dllexport) __stdcall int myFunc(char* a, char* b, char* c);