definition for c_func

Hi,

I see c_func types in code. Could not land on their definition during the search. Can anyone help if you have an idea?

Thanks.
 
bv_arvind said:
I see c_func types in code. Could not land on their definition during the search.
Can you quote an example? The only instance I could find is
Code:
void (*c_func)(void *);
in which case c_func is merely an identifier: the name of a pointer to a void function.

Fonz
 
Back
Top