What is IUnknown? What methods are provided by IUnknown?
Answers were Sorted based on User's Feedback
Answer / cheruku raghu
IUnknown is a type of COM Interface.
Every COM class implements an interface named IUnKnown.
IUnKnown contains three methods:
1) HRESULT QueryInterface()
2) ULONG AddRef()
3) ULONG Release()
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / mahesh
Iunknow is the base interface for any com component.
it supports three methods
addref()
release()
queryinterface()
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / krithiga.v
IUnknown is the base interface to all other derivable interface.
It contains the methods such as
>queryInterface()
>addRef()
>releaseRef()
| Is This Answer Correct ? | 1 Yes | 2 No |
hi,I have applied for NIC test plz if any one have test paper pattrn plz send me on "mn_mayank38@yahoo.co.in"
how to call a dll as a COM dll?
Define and explain about COM?
Differentiate normal DLL to COM DLL
How can would you create an instance of the object in COM
Explain object pooling?
What is In-proc?
What is IUnknown? What methods are provided by IUnknown?
C is aggregated by B, which in turn aggregated by A. Our client requested C. What will happen?
what is far pointer and what are the use of far poiter in com/dcom ?????
Futures of COM
How to Use structs in COM interfaces when Automation compatibility is not an issue?