typedef int (CALLBACK *hook)();怎么理解?

2025-01-06 08:39:55
推荐回答(1个)
回答1:

typedef int (CALLBACK *hook)();
typedef int(_CDECL* hook)(int , int) ; //只不过这个CDECL是默认的。
这是函数指针定义,只不过前者定义的是一个回调函数类型,返回值为int,形参不定。
运用形式如下:
int fun1(hook hk, int others);
有代码的话可以发给我一起看看啊.