I have a dll that I created on Windows7 (64-bit OS) on a Win32 platform. Unfortunately, when I import this DLL into C # code, I come across:
"
An attempt was made to load a program with the wrong HRESULT format: 0x8007000B
"
When I used DependencyWalker for this DLL, it shows the dependency of IESHIMS.dll and MSVCR110.dll, which cannot be found.
Where do these dlls come from and why does my created dll have a dependency on these two? Help me how can I get this?
Note. I used the x86 platform in my C # code.
source
share