Hi,
I have some oython application which uses some COM server.
on of the functions in the COM servers expects getting 64 bit unsigned integer (i.e. VT_UI8), but the problem is that python automatically converts 'small' integers to 32 bit integers (even if casting them to long) anf this leads to some error at the COM server (it gets a VT_UI4 type where it expects VT_UI8). Is there a way to force python to create 64 bit integer?
Thanks,
Neta