I have to DLL one is COM dll and another is normal DLL.
How I can identify which dll is normal DLL and which DLL is
from COM DLL.
please give me some clear picture on these


Answers were Sorted based on User's Feedback



I have to DLL one is COM dll and another is normal DLL. How I can identify which dll is normal DLL ..

Answer / chetan

make command on both dll
regsvr("noramal dll") it will show message of some entry
point error
regsvr("comdll") it will register succesfully to window

Is This Answer Correct ?    10 Yes 0 No

I have to DLL one is COM dll and another is normal DLL. How I can identify which dll is normal DLL ..

Answer / satish tandle

If you have Visual Studio Installed, Open Visual Studio
Tools -> Dependency Walker (Depends). From Dependency
Walker window, locate and open the COM dll. It will list
the functions exported. For the COM dll it should export
DLLRegisterServer, DLLUnregisterServer, DllGetClassObject
and DllCanUnloadNow.
For a non COM dll it would show some other functions.

Is This Answer Correct ?    10 Yes 0 No

Post New Answer

More VC++ AllOther Interview Questions

Is it safe to uninstall microsoft visual c++ 2008 redistributable?

1 Answers  


How a dll will be sharable by more than one exe?

4 Answers   CA,


Difference between critical section, mutex and semaphore.

1 Answers  


Can I remove microsoft visual c++?

1 Answers  


What is the use of message map? Advantages of a message map.

1 Answers  


What is the difference between Undo and Redo?

15 Answers   Google,


Differences between vc 6.0 and vc 7.0

1 Answers   Honeywell,


What is a wizard?

1 Answers  


What is microsoft visual c++ redistributable and do I need it?

1 Answers  


How do I create an mfc application in vc++?

1 Answers  


What is a copy constructor? What is the need for it?

1 Answers  


What is the RGB macro used for?

1 Answers  


Categories