void AnyName();
int MyFunction(int a, char*p, float b)
이함수에 대한 함수의 포인터를 선언하면
typedef int (*FUNC_TYPE)(int, char, float)
이래하면됩니까?