在 C++/CLI 和 C# 中包装 void 指针
我正在为 C 静态库开发 C++/CLI 包装器,最终在 C# 应用程序中使用。
我在 C 库中有这样的函数。
long SubscriveEvent(void* handle,device name ,....);
long StartCaptureViceo(handle,...,...);
这里 StartCaptureViceo () 将使用 SubscriveEvent() 中的句柄,
我需要在 C# 中为此 void 维护一些变量 现在我应该在 C++/CLI 中使用什么数据类型来保留。
请帮助我。
I am working on C++/CLI wrapper for C static libary that is eventually used in C# application.
I have function like this in C Library.
long SubscriveEvent(void* handle,device name ,....);
long StartCaptureViceo(handle,...,...);
Here StartCaptureViceo () will use the handle from SubscriveEvent()
I nee to maintain some variable in C# for this void
Now what data type i should use in C++/CLI to Retain.
Please help me for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
System::IntPtr
System::IntPtr