Archive: Can not call dll function from $EXEDIR


Can not call dll function from $EXEDIR
When I try
System::Call '$EXEDIR\mylib.dll::func()i .r0'
i got a MS error popup, but if I first copy my dll into the $TEMP folder and use it from there everything works fine...
Why is that ?


Try:
SetOutPath $EXEDIR
System::Call 'mylib.dll::func()i .r0'

-Stu