typedef int py_var_t (void *);
it is used as:
py_var_t *somesymbol
|
It defines py_var_t to be the type of a function returning int and taking a void* pointer as argument. |
|||||
|
|
|
This:
defines the type of the function as described by @milan1612. Then this:
creates a pointer to such a function. You could also have created the pointer like this:
but use of typedefs is better practice, particularly when the function types get more complicated. |
||||
|
|
typedefkeyword to make the declaration work. – OregonGhost Mar 29 '10 at 16:42