我声明了这样的函数:
int __stdcall DoSomething(int &inputSize, int &outputSize, void(* __stdcall progress)(int) )
{
}
如何使progress()回调全局变量以在同一DLL的其他函数中使用它?
我是C ++的新手。
最佳答案
创建具有匹配签名(即void (*)(int)
)的函数。
#include <iostream>
//void ( * )( int ) - same signature as the function callback
void progressHandler(int progress)
{
std::cout << "received progress: " << progress << std::endl;
}
int DoSomething(int &inputSize, int &outputSize, void (*progress)(int))
{
progress(100);
return 0;
}
int main()
{
int inputSize = 3;
int outputSize = 3;
DoSomething(inputSize, outputSize, progressHandler);
return 0;
}
输出:
received progress: 100
即使我删除了它(因为我使用了
g++
),也可以保留__stdcall
。关于c++ - 如何使回调全局,以便我可以将其用于其他功能?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33046755/