如何将 cdecl 回调与 pinvoke 一起使用
我有一个带有 cdecl 回调的 ac 库。我如何在 c# 中使用这些。
一切似乎都在说它们必须是 stdcall 回调
才能清楚:
delegate int del();
[dllimport("mylib.dll",CallingConvention=CallingConvention.Cdecl)]
public static extern int funcwithcallback(del foo);
其中 del 必须以 cdecl 方式调用
I have a c library that has cdecl callbacks. How can I use these from c#.
Everything seems to say that they must be stdcall callbacks
to be clear:
delegate int del();
[dllimport("mylib.dll",CallingConvention=CallingConvention.Cdecl)]
public static extern int funcwithcallback(del foo);
where del must be called cdecl-wise
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看这个。该功能自 1.1 起就已存在,因此它应该涵盖您正在使用的任何 .NET 版本。您只需指定 CallingConvention。
MSDN 上的 CallingConvention 文档
您还可以查看代码项目上的这篇文章:
在 C# 中使用 _CDECL 调用约定
编辑:此外,这是来自 FreeImage.NET 的示例。
然后在 C# 方面,只需:
Take a look at this. The functionality has been around since 1.1 so it should cover whatever .NET version you are using. You just have to specify the CallingConvention.
CallingConvention Documenation at MSDN
You can also look at this article on Code Project:
Using the _CDECL calling convention in C#
EDIT: Also, Here is a example from FreeImage.NET.
Then on the C# side, simply:
它的工作原理是由于 2005 编译器添加了一些保护代码。
编辑:如果您可以用本机代码制作填充程序,请不要尝试此操作。
It works due to some safeguard code added by the 2005 compiler.
EDIT: Don't try this if you can possibly make a shim in native code.