在 C++/CLI 中包装 C 回调

发布于 2024-12-11 09:43:02 字数 189 浏览 0 评论 0原文

我有一个静态 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 技术交流群。

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

发布评论

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

评论(1

柠檬色的秋千 2024-12-18 09:43:02

在 C++/CLI 中,您可以使用静态函数(具有本机 C 签名,可以作为来自 C 库的回调)调用托管委托:

// MyDispatcherClass.h
#pragma once

public delegate void MyDelegateType();

public ref class MyDispatcherClass
{
public:
    static MyDelegateType^ MyDelegate;
};

static void MyCallback(/*...*/)
{
    if (MyDispatcherClass::MyDelegate != nullptr)
        MyDispatcherClass::MyDelegate(/* do some type mapping here if needed */);
}


// MyDispatcherClass.cpp: 
#include "stdafx.h"
#include "MyDispatcherClass.h"

因此,在您的 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:

// MyDispatcherClass.h
#pragma once

public delegate void MyDelegateType();

public ref class MyDispatcherClass
{
public:
    static MyDelegateType^ MyDelegate;
};

static void MyCallback(/*...*/)
{
    if (MyDispatcherClass::MyDelegate != nullptr)
        MyDispatcherClass::MyDelegate(/* do some type mapping here if needed */);
}


// MyDispatcherClass.cpp: 
#include "stdafx.h"
#include "MyDispatcherClass.h"

So register MyCallback at your C library, register your C# delegate to MyDispatcherClass::MyDelegate and you are done.

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