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
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 |
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 |
difference between assert and verify.
Which steps are required to add a column to a list view?
Is visual c++ a compiler?
How to create a DLL in C++.net 2005 which we can use in VB 6.0 application ?
What are some differences between a form view and a dialog box?
2 Answers DS Group, Manipal Ecommerce,
What is microsoft visual c++ 2008 redistributable and do I need it?
A file a.cpp & B.cpp are complied & linked together in VC++ file a is something like int a =100;, File B is something like extern a; main() { printf("%d",a); }what will be the output.a)100,b)linker error,c)complier error etc etc.
What is the difference between turbo c++ and visual c++?
Name the three attributes of a pen?
What is the difference between serialization and deserialization?
4 Answers Cap Gemini, HCL, MBT,
What function is used to trap all mouse messages?
Explain some of commonly used methods provided by iunknown.