So I have a SSP dll I am working (though I believe the type of dll is irrelevant). anyway, the dll works great and it compiles without any errors for 32 and 64 bit architectures.
The 32-bit dll works perfectly on 32 bit boxes. However, whenever I try to load the 64-bit dll on a 64 bit box, windows says "can not find the module specified.
I have checked the exports, and everything is fine on that front. But even trying to do a rundll32 on the dll, it says it can't find it.
so I am wondering if anyone else has seen this before, where windows seems to be unable to see your dll.
Thanks in advance
1, you can use Dependency walker (http://www.dependencywalker.com/) to check whether the dll is referring anyother dlls (which may be missing).
2, for you troubleshooting, you can build the dll with /MT instead of /MD (as /MT will combine all dependent dlls into its own)
3, to make sure all the dlls(& 2nd lay ones) are in the lookup path, you can config PATH explicitly before using the dll (like SET PATH=d:\somefolder)