I have an ActiveX DLL that I am integrating with a standard third party client. To achieve this, I had to include a custom DEF file, a proxy linker, and self-initialize the COM libraries.
When I test my ActiveX DLL with a client I created, it does run fine. However, when I include the ActiveX DLL with the third party client, it crashes in certain function calls. I believe the crashing is a result of a mismatch in the naming decoration.
Is there a way I can verify the name decoration that the third party client program requires?
Thanks,

dumpbin.exe /imports client.exe? – wqw Jul 2 '11 at 12:09