How to find whether an exe is dynamically linked or statically linked in windows?
+1
A:
Static/dynamic linking is a transitive property. You have to specify to what it is statically/dynamically linked. And everything is dynamically linked to the winapi.
erikkallen
2009-12-02 10:28:23
A:
All Windows apps are dynamically linked to the Windows API. If you need to determine how a specific non-Windows library (like libxml or somesuch) was linked, Visual Studio includes a program called DEPENDS.EXE that will show all the DLL's an exe is linked against. If the library in question isn't listed, then it's either linked statically, or it's not linked at all.
Dewayne Christensen
2009-12-02 15:33:28