从 dll 导出函数指针

发布于 2024-12-10 03:30:55 字数 62 浏览 1 评论 0原文

我在 dll 文件中有一个函数指针(在实现中,而不是标头中)。如何在exe源代码中调用this指针指向的函数?

I have a function pointer in a dll file (in implementation, not header). How can I call the function pointed to by this pointer in the exe source code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゃ懵逼小萝莉 2024-12-17 03:30:55

您可以导出返回指针的函数。
标题:

typedef void ( *MyPtr ) ();

__declspec( dllexport ) MyPtr GetMyPtr();

来源:

MyPtr GetMyPtr()
{
  //retunr the function pointer here
}

you can export a function returning the pointer.
Header:

typedef void ( *MyPtr ) ();

__declspec( dllexport ) MyPtr GetMyPtr();

Source:

MyPtr GetMyPtr()
{
  //retunr the function pointer here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文