I am using ctypes to wrap a set of functions in a DLL. It has been going very well, and I am very impressed with ctypes. I want to call a c function with a signature of: void func(int **cube), where the array if ints in cube is modified by func. I want to setup cube with int values, and access them after the call to func. I unerstand how to setup the ctypes array, but how do I pass **cube to the function, and how do I access the results? -- http://mail.python.org/mailman/listinfo/python-list
- cytpes **int VernM
- Re: cytpes **int Diez B. Roggisch
- Re: cytpes **int Gabriel Genellina
- Re: cytpes **int Diez B. Roggisch
- Re: cytpes **int VernM