You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
517 B
19 lines
517 B
typedef short (*hello1)(char coolParam,
|
|
ushort *,
|
|
unsigned int anotherone);
|
|
|
|
short (*hello2)(char coolParam,
|
|
ulong *,
|
|
uchar,
|
|
unsigned int anotherone);
|
|
|
|
short hello3(char coolParam,
|
|
ushort *,
|
|
unsigned int anotherone);
|
|
|
|
void x(custom_t *e, void (*funcptr));
|
|
void x(custom_t *e, void (*funcptr)[]);
|
|
void x(custom_t *e, void (*funcptr)(int, int));
|
|
void x(custom_t *e, void (*funcptr)(int, int)[]);
|
|
|