我现在想调用ffmpeg中的函数,现在已经有了lib,.h和dll,调用没有参数的的函数时没有问题,但是调用有参数的函数时就会出现: error C2197: 'int (__stdcall *)(void)' : too many actual parameters,希望哪位高手能给解决!!在线等待谢谢各位的回答,我已经自己解决了问题!!
2 回答
12345678_0001
TA贡献1802条经验 获得超5个赞
参数匹配 链接库中函数的原型 和实参调用的不一致
'identifier' : too many actual parameters
The specified function was called with too many parameters, or the function declaration was incorrect.
The following is an example of this error:
void func( int );
main()
{
func( 1, 2 ); // error, two actual parameters
}
添加回答
举报
0/150
提交
取消