Re: cytpes **int

2008-04-29 Thread VernM
On Apr 28, 11:57 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > Gabriel Genellina schrieb: > > > > > > > [snip repetition] > > > That's true for "a pointer to a pointer to int", and it's valid if the > > functions references **b or b[0][0] - but in this case int** probably > > means "[pointer

Re: cytpes **int

2008-04-29 Thread Diez B. Roggisch
Gabriel Genellina schrieb: En Mon, 28 Apr 2008 18:55:15 -0300, Diez B. Roggisch <[EMAIL PROTECTED]> escribió: VernM schrieb: 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:

Re: cytpes **int

2008-04-28 Thread Gabriel Genellina
En Mon, 28 Apr 2008 18:55:15 -0300, Diez B. Roggisch <[EMAIL PROTECTED]> escribió: VernM schrieb: 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), wher

Re: cytpes **int

2008-04-28 Thread Diez B. Roggisch
VernM schrieb: 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

cytpes **int

2008-04-28 Thread VernM
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