How to detect which is a COM dll and which a regular dll file? [modified]
-
Which is the best and sure way to detect that the DLL file is a COM DLL file or it is a regular DLL file? -- modified at 13:42 Wednesday 15th August, 2007
Try and register the dll using Regsvr32. If it is a com dll you would get a success message saying the dll is registered successfully. If it is not a com dll it would give you and error message saying that the entry point DllRegisterServer was not found, which means that the dll is not a com dll.
"What's on your mind, if you will allow the overstatement?"
-
Try and register the dll using Regsvr32. If it is a com dll you would get a success message saying the dll is registered successfully. If it is not a com dll it would give you and error message saying that the entry point DllRegisterServer was not found, which means that the dll is not a com dll.
"What's on your mind, if you will allow the overstatement?"