Re: [python-win32] Callback RemQueryInterface gives E_NOINTERFACE

2013-12-16 Thread Jim Bell
It works! Thank you! I must have missed this in my myriad iterations. The calls succeed and S_OK replaces E_NOINTERFACE on the wire, as expected. For posterity, a few more notes: I omitted the imports before, but here they are: import win32com.client import win32com.server import

[python-win32] Callback RemQueryInterface gives E_NOINTERFACE

2013-12-15 Thread Jim Bell
I've been though all the demos and scoured the web, and am stumped. But I think I'm close. I have a 3rd-party .dll/.tlb. I run makepy.py and it works fine. I need to pass a callback interface, which they define, into one of their functions. Here's where I'm stumped.

Re: [python-win32] Callback RemQueryInterface gives E_NOINTERFACE

2013-12-15 Thread Mark Hammond
On 15/12/2013 8:28 AM, Jim Bell wrote: I've been though all the demos and scoured the web, and am stumped. But I think I'm close. I have a 3rd-party .dll/.tlb. I run makepy.py and it works fine. I need to pass a callback interface, which they define, into one of their functions. Here's where