Tagged Questions
The iunknown tag has no wiki summary.
8
votes
2answers
88 views
Assigning interface pointers in a Delphi 6 class declaration?
Despite years of Delphi programming I just ran into a class declaration style I had never seen for a class that supports IUnknown:
TBCUnknown = class(TBCBaseObject, IUnKnown)
private
FRefCount: ...
6
votes
3answers
876 views
Delphi: How to implement QueryInterface of IUnknown?
In Delphi, IUnknown is declared as:
function QueryInterface(const IID: TGUID; out Obj): HResult; stdcall;
Note: The output parameter is untyped
In my TInterfacedObject descendant i need to handle ...
3
votes
3answers
153 views
Must the IUnknown interface be re-implemented by every new COM class?
Sorry if this question seems obvious for everyone, but I am very new to COM. From the tutorial I see here http://www.codeguru.com/cpp/com-tech/activex/tutorials/article.php/c5567, it seems like every ...
2
votes
1answer
269 views
Access violation casting IDispatch in XE2
We're using some old code (ComLib.pas created by Binh Ly) so we can use the enumeration interface on an (OleVariant) object:
type
TDispNewEnum = dispinterface
...
2
votes
3answers
98 views
Does IUnknown::QueryInterface() increment the reference count?
If I have an IUnknown *ptr, do I need to call Release() on every interface I obtain through ptr->QueryInterface(), in addition to calling ptr->Release() when I'm done with ptr?
I used to think ...
2
votes
2answers
297 views
warnings about mystery interfaces in C# projects
Every time I build my C# Solution, I get a handful of warnings about interfaces that I've never seen or written. I tried Googling for some of them, but get no hits. Could these possibly be buried in ...
2
votes
2answers
143 views
Get IUnkown using window handle
I know this may be a long shot so forgive me as I don't really know that much about COM.
Basically what I am trying to do is get the pointer to the IUnknown interface for a running application, the ...
1
vote
1answer
157 views
COM IUnknown and do I need a pointer to it first before calling CoGetClassObject?
In COM, when you want to create an instance of some COM Server object, do you first need to get a pointer to it's IUnknown interface and only then create a class object using CoGetClassObject?
As far ...
1
vote
4answers
115 views
Problem with D3D & COM
all the D3D interfaces are derived from COM's IUnknown interface, so I though I'd take an easy route for releasing D3D objects and use something like this:
__inline BOOL SafeRelease(IUnknown*& ...
1
vote
1answer
116 views
How to get IUnknown from WDM driver CreateInstance
In documentation (C++ example)
LUnknown* pIUnknown = CreateInstance(slot);
I try this
>> import ctypes
>> print type(ctypes.cdll.lcomp.CreateInstance(0))
<type 'int'>
How to ...
1
vote
2answers
604 views
Hook IDispatch v-table in C++
I'm trying to modify the behavior of an IDispatch interface already present in the system.
To do this my plan was to hook into the objects v-table during runtime and modify the pointers so it points ...
1
vote
3answers
288 views
Is it worth checking for null pointer in QueryInterface() implementation?
IUnknown::QueryInterface() is passed a void** parameter denoting an address where to put the retrieved interface.
STDMETHOD QueryInterface(/* [in] */ REFIID riid, /* [iid_is][out] */ void** ...
0
votes
0answers
13 views
Static variables reset outside of CFPlugin code
I'm loading and creating a CFplugin using Core Foundation and running into a strange behavior where all the static variables defined throughout my host code get reset to their initialization values ...
0
votes
4answers
64 views
Representing IUnknown In Managed C++
I building Wrapper in C++/CLI for C Static library to be used in .NET application through C#
I have function like this in C
long My_COM_Interface( PVOID hDevice,IUnknown **pUnknown);
How to ...
0
votes
0answers
41 views
Does dynamic work with IUnknown and Typelib
Currently I'm experimenting with C#4's dynamic programming and I did not completely understand under which circumstances the keyword dynamic works. It is clear to me that it works with IDispatch, as ...
0
votes
1answer
73 views
How to manage .Net's RCW COM object creation paramets (namely requested interface)?
I'm using external native COM component in my C# .Net application.
This COM dll doesn't have a type library, so I had to write the interop code myself, and having include/idl files I did it like ...
0
votes
1answer
128 views
Why IHTMLDocument2 is not equal to IHTMLDocument2.body.document?
Why is the following doc2 different from doc22?
IHTMLDocument2 doc2 = (pDisp as IWebBrowser2).Document as IHTMLDocument2;
IHTMLDocument2 doc22 = doc2.body.document as IHTMLDocument2;
bool isequal = ...
0
votes
2answers
268 views
What is the correct way to cast when using ATL and IUnknownPtr?
During the modification of an existing ATL COM object I came across an article from the "The Old New Thing" blog called "The ways people mess up IUnknown::QueryInterface" and there was a discussion in ...
0
votes
1answer
129 views
Linker error with DXGI when passing IID_IDXGIDevice to IUnknown::QueryDevice
I am trying to separate Swapchain and Window creation from D3D10 device creation in my rendering framework meaning that I can't really use D3D10CreateDeviceAndSwapChain. I am running into an ...
0
votes
1answer
390 views
Implementing a COM “sink” in managed (C#) code
I have a legacy COM control (Core) that accepts an IUnknown to a sink. The purpose is to allow the Core to read/write data through this sink interface. The Core/Sink pointers are currently in use in ...
0
votes
2answers
622 views
Implementing IUnknown, unresolved external symbol
I am trying to create a class that implements the IUnknown interface. I have the following code in the header file.
#pragma once
#include "stdafx.h"
#include "Unknwn.h"
class Vmr9Presenter : ...
0
votes
2answers
820 views
Exposing events from .NET to COM
recently I have been encountering problems with exposing events from .NET to COM.
I have been successful with this example (conceptually taken from ...