Hi:
I am programing VIX API from python 2.5, but now I want to port the code to python 3.2
This funtion opens the virtual machine:
self.jobHandle = self.VixLib.vix.VixVM_Open(self.hostHandle,
"C:\\MyVirtualMachine.vmx",
None,
None)enter code here
Previusly this function is imported from Vix.dll with this code:
vix.VixVM_Open.restype = VixHandle
vix.VixVM_Open.argtypes = [VixHandle,c_char_p,POINTER(VixEventProc),c_void_p]
In 2.5 this code is correctly, but in 3.2 it returns ctypes.ArgumentError
What can I do?? thanks