I have a C function in a DLL which looks like this.
ProcessAndsend(Format *out, // IN
char const *reqp, // IN
size_t reqLen, // IN
Bool *Status, // OUT
char const **reply, // OUT
size_t *resLen) // OUT
When the call is successful something get saved to all the OUT parameters.
Using python ctypes (On Windows) I want to double de-reference the **reply pointer and see what is the value there.
Thanks in Adv.