Working with ctypes and char** data type

2008-07-24 Thread Philluminati
I'm a bit of a python newbie and I need to wrap a C library. I can initialise the library using CDLL('mcclient.so') and I can call functions correctly inside the library but I need to invoke one function which has this function definition: char ** CAPAPI McSearch(HMCLINK Handle,

Re: Working with ctypes and char** data type

2008-07-25 Thread Philluminati
On Jul 24, 4:03 pm, Thomas Heller <[EMAIL PROTECTED]> wrote: > Philluminati schrieb: > > > > > I'm a bit of a python newbie and I need to wrap a C library. > > > I can initialise the library using CDLL('mcclient.so') > > > and I can