从 c# 代码传递结构引用以调用 c++在其原型中接受结构引用的 DLL 函数
我在 c++ DLL 中有一个函数,它具有以下原型
int function(RefPar ¶ms);
我如何使用“DLLImport”从 ac# 程序调用此函数。
当我尝试如下所示时,在 Visual Studio 2008 中运行时发生 AccessViolationException
..
[DllImport("VistaGMMDLL.dll", EntryPoint = "function"]
unsafe static extern int function(ref RefPar params);
并调用为..
int ret=function(ref params);
注意:RefPar结构有很多 无符号整数值和 1 个枚举 作为其成员的价值。
请任何人帮助我正确调用该函数..
I hav a function in c++ DLL that has following prototype
int function(RefPar ¶ms);
how can i call this function from a c# program using "DLLImport".
when i tried like below, AccessViolationException
happened while running in visual studio 2008..
[DllImport("VistaGMMDLL.dll", EntryPoint = "function"]
unsafe static extern int function(ref RefPar params);
and called as..
int ret=function(ref params);
Note:RefPar structure has many
unsigned integer values and 1 enum
value as its members.
pls anyone help me to call the function correctly..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有几件事让我突然想到。首先,我不明白为什么你需要使用不安全。其次,您可能存在调用约定不匹配的情况,即 C++ 中的 cdecl 和 C# 中的 stdcall。
我会这样做:
C++
C#
我不确定枚举在 C++ 大小上有多大。这就是我在 C# 代码中放置显式 MarshalAs 的原因。如果它只是一个字节,则使用 UnmanagementType.U1 代替。我相信你明白了。
如果您的 C++ 函数将其参数视为输入/输出参数,则在 C# 端使用 ref 是正确的。如果它实际上是一个输出参数,那么将代码更改为如下:
A couple of things jump out at me. First of all I don't see why you need to use unsafe. Secondly, you probably have a calling convention mismatch, cdecl in the C++ and stdcall in the C#.
I'd do it like this:
C++
C#
I'm not sure how big the enum is on the C++ size. That's why I've put an explicit MarshalAs in the C# code. If it's just a single byte, then use UnmanagedType.U1 instead. I trust you get the idea.
If your C++ function treats its parameter as an in/out parameter then using ref on the C# side is correct. If its actually an out parameter then change the code to be like this:
尝试这样:
如果您需要更多详细信息,请告诉我
Try in this way:
Let Me know if you need more details
调用此函数的另一种非常简单的方法是:
Another very simple way to call this function is: