Re: [python-win32] AddObject from C
Seems to be solved: /lib/site-packages/pycom/__init__.py def GetObject(Pathname=None, Class=None, clsctx=None): ...if Class is not None: return GetActiveObject(Class, clsctx) else: #first check
[python-win32] AddObject from C
Hi guys I am working with an embedded interpreter, how can I share an existing COM object from the C api ?(without using the ROT) Background: The host process is VB6 with a C helper DLL. I have stripped down the pywin32 library to compile directly into my helper dll with just the COM access feat