tags:

views:

194

answers:

2

Hello,

I have a python project that calls a c++ wrapper dll that calls a c# com interop dll. In my computer, with all frameworks and programs installed, my project runs very well.

But in a computer that just got formatted it doesn't. I allready installed c++ 2008 redistribute and the c++ part is working but when I call a function from it (that will call the c# correspondent one), it gives an error.

I want to know what are the dll dependencies from both c++ and c# dll's to see what is missing :)

+8  A: 

Looks like you need Dependency Walker.

Johannes Rudolph
+5  A: 

Dependency Walker (a.k.a. depends.exe) works for both native DLLs and managed DLLs.

It is included in some Visual Studio versions, and can also be downloaded here.

Thomas