need help to cast from array of floats to void* ?

Hi
I need help with casting issues
i have function that gets some void* data
and i try to send it float** array but its write an error
"error: cannot convert to a pointer type"
how can i casting the floats array to void* ??
thanks
try something like:

 
float *foo=static_cast< float* >(voidPointer);
Topic archived. No new replies allowed.