Hi,
I have to call a function in some DLL
One parameter for the function is defined as:
float (***p)[3];
It somehow should hold a 4 dimensional array of floating point numbers...
With arrays of pointers to pointers,
But I'm not sure whether the [3] comes as first or last dimension...
And, anyway, I tried many options but couldn't allocate the wanted memory.
(I'm using Visual Studion 10 with C++)
Any ideas?