November
October
How to check if DLL is compiled as 32-bit or 64-bit?
Open visual studio command prompt. Use this command: dumpbin /headers C:\path\name.dll At the very beginning, you will find “FILE HEADER VALUES”, the first value will have a “(x86) ” for 32 bit and “(x64)” for 64 bit.
How do I: check if DLL is loaded
A few days back I developed an ISAPI filter and when I installed it on the IIS server and tried to test it was not running. To troubleshoot I thought how would I know that DLL has been loaded by the IIS server successfully and there is no error? If y ...
