Tagged Questions
2
votes
1answer
145 views
Avoid COM marshalling
I'm a little confused about com threading models.
I have an inproc server and I want to create an interface accesible from any thread regardless of the threading-model and/or flags used in ...
1
vote
0answers
396 views
CoCreateInstance fails with E_FAIL when CLSCTX_LOCAL_SERVER is specified and Surrogate process is used
I am trying to use surrogate process, dllhost, to run my COM 64 bit dll in a separate 64 bit dllhost process. I have made the required registry entries for the same.
When I try to create an object of ...
1
vote
0answers
126 views
How to communicate beetwen parts of out-proc *.exe COM server?
We have *.exe application which is also out-process COM server.
The main thread is doing some network routine: it receives data packets and puts them into queue.
COM client, VBA for example, uses ...
1
vote
2answers
136 views
Unwillingly calling QueryInterface via RPC
In my application, I create an object A, that creates an object B, both via CreateInstance. Both objects should live in the same process.
Now I see that object B, when asked for a certain interface, ...