请问typedef int(_stdcall* topenPort)(char *port, int baundrate)这段代码怎么理解?
1 回答
慕哥6287543
TA贡献1831条经验 获得超10个赞
用typedef定义了一种函数指针类型topenPort,这种指针可以指向下面这种函数:
int _stdcall f(char* port,int baundrate) //返回int 有一个char*类型和一个int类型的参数,_stdcall说明该函数参数是从右往左入栈的
{......
return 666;
}
//于是可以这样使用topenPort类型:
topenPort pf1; //定义一个指针
pf1=f; //指向f
添加回答
举报
0/150
提交
取消