I need to programatically check arbitrary Dlls to see whether they are inproc COM servers. In other words, can they be registered on the current system using regsvr32 / DllRegisterServer.
Short of Andy's suggestions on this question, is there a way to figure out the needed without having to:
There must be something in the PE format that indicates the needed. My assumption is that 'regsvr32' already does this internally. Would appreciate any input.
No. The only thing that makes a DLL a COM object is that it exports DllGetClassObject
. The only thing that makes it registerable is that it exports DllRegisterServer
.