gpt4 book ai didi

c++ - 在 DLL 中注册回调函数

转载 作者:行者123 更新时间:2023-11-30 04:06:17 25 4
gpt4 key购买 nike

我有一个简单的测试函数,我希望 DLL 中的代码能够回调

 void user_function_stats( int )
{
cout << "Stats!\n";
}

所以在头文件中我指定了一个typedef

typedef void (CALLBACK *stats_user_function)( int );

和注册回调的DLL函数

void DLL_EXPORT getbar_client_set( stats_user_function pf );

这应该让我在用户代码中将回调函数注册为

getbar_client_set(  & user_function_stats );

但是编译器报错

main.cpp|14|error: invalid conversion from 'void (*)(int)' 
to 'stats_user_function
{aka void (__attribute__((__stdcall__)) *)(int)}' [-fpermissive]|

我已经尝试将 CALLBACK 添加到用户函数的定义中

void CALLBACK user_function_stats( int )
{
cout << "Stats!\n";
}

但是现在我得到了这个编译器错误

undefined reference to `_imp__getbar_client_set'|

最佳答案

CALLBACK 标记实际上是 Windows 的调用约定说明符。没有必要用于进行回调。 Windows 在内部仅使用不同的回调调用约定,而不是标准的 C/C++ 调用约定。您可以执行以下两项操作之一。

您可以从 typedef 中删除 CALLBACK 标记,即

typedef void (*stats_user_function)( int );`

或者您使用 CALLBACK token 声明您的回调函数,该 token 扩展为 __stdcall__ 调用约定说明符,即

void CALLBACK user_function_stats( int )
{
cout << "Stats!\n";
}

关于c++ - 在 DLL 中注册回调函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22969094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com