在 C++/CLI 中包装 C 回调
我有一个静态 C 库,其中有非静态回调函数。注册此回调的客户端程序从摄像头获取视频数据。
现在我正在 C++/CLI 中为此编写 Wrapper(DLL)。这个 Wrapper Dll 将在 C# 应用程序中使用。
如何在 C++/CLI 中实现回调,以便 C# 代码可以注册它并从中获取视频数据。
I have a static C library where I have non static call back function. The Client program that register this callback gets Video data from camera .
Now I am writing Wrapper(DLL) for this in C++/CLI.This Wrapper Dll will be used in C# application.
How to Implement the callback in C++/CLI so that C# code can register it and gets the video data from it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 C++/CLI 中,您可以使用静态函数(具有本机 C 签名,可以作为来自 C 库的回调)调用托管委托:
因此,在您的 C 库中注册
MyCallback
,注册您的 C#委托给MyDispatcherClass::MyDelegate
就完成了。In C++/CLI, you can have static functions (with native C signature, which can work as a callback from a C library), calling managed delegates:
So register
MyCallback
at your C library, register your C# delegate toMyDispatcherClass::MyDelegate
and you are done.