I need to provide automatic manipulation of a com object via python. This have been working fine until I were supposed to use some functions that passed a struct around as argument.
I have an idl file which contains the following:
[uuid(D0C92C79-FC92-11DB-93DF-0019B952F6E1)]
typedef struct POINT_TYPE
{
double x,y,z;
} POINT_TYPE;
[uuid(D0C92C00-FC92-11DB-93DF-0019B952F6E1), version(1.2),
helpstring("My Automation Library.")]
library MyAutoLib
{
importlib("stdole32.tlb");
struct POINT_TYPE;
typedef _POINT_TYPE
[object, uuid(D0C92C85-FC92-11DB-93DF-0019B952F6E1), oleautomation, dual ]
interface IMyObj : IDispatch
{
[id(0)] HRESULT doIt([in] _POINT_TYPE point,[in]);
...
}
...
}
From this i midl compile and generate a tlb file, I then register it and generate a stub.dll.
Then I would like to use this interface in python. I get an object from win32com.client.Dispatch, but my problem start when I want to call doIt. I need a POINT_TYPE. So I try:
win32com.client.Record("POINT_TYPE",myobj)
Which returns a pywintypes.com_error: (-2147024809, 'The parameter is incorrect.',None ,None)
After looking into the objects I find something puzzling: I can find the "POINT_TYPE" in the typelib GetDocumentation call, but when I look up:
typelib.GetTypeInfo(...).GetTypeAttr().iid
it returns:
IID('{00000000-0000-0000-0000-000000000000}')
This looks obviously wrong to me, but I might be mistaken. I have tried looking at the typelib with the ITypeLib Viewer, and it finds the struct with its members, so the information should be in the typelib.
So what can I do to call my function via COM and Python? I can unfortunately not get rid of the POINT_TYPE because the interface is already in use, but the idl file is in my possession so I can fix the typelib if there is anything wrong with it.