[python-win32] Re: win32com, pythoncom

2005-09-02 Thread Roger Upole
Here's a link to an indexing plugin implemented in python. http://www.orgmf.com.ar/condor/gdsPlugin.py Although it looks like the registration part needs to be updated for the newer Google sdk. Roger Christophe Leske wrote: > Roger Upole schrieb: > >>>From looking at the idl files in the sd

[python-win32] Re: win32com, pythoncom

2005-09-01 Thread Roger Upole
>From looking at the idl files in the sdk, all the interfaces are based on IDispatch, so this should be doable. To create a com server, you use a class that implements the methods of the interface and register it with your guid and the IID of the interface it represents. See the Quick start to serv