Cplusplus minimal requirement

Hello All …

I have a cplusplus chop ( test.dll ) that works perfectly on my computer. ( win 10 64 bits )

If i move this dll to another computer , same os ( win 10 64 bits ) same TD version … the DLL fail to load. Is there any additional content to install ? some kind of vc redist_x64 ?

Thanks

It depends how you compiled your .dll. It needs the redist for the version of visual studio that you compiled your dll with.
You can also use dependency walker tool that microsoft provides to see what the dependencies of the .dll are, which may help.

Thanks Malcom …

I solved the issue, i was unsing the DEBUG dll … I compiled with release version ( and added meanwhile the VC redist 2015 ( so i do not know if it mandatory or not ))

Thanks for your answer.