作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 C++ dll,它有一个具有以下签名的导出函数...
__declspec(dllexport) __stdcall
void Paint(LPDISPATCH& disp, VARIANT& x, VARIANT& y, VARIANT& z);
我想从 C#.NET 调用这个导出函数。为此使用了以下原型(prototype)...
[DllImport("xyz.dll",
CallingConvention = CallingConvention.StdCall)
public static extern void Paint(
[MarshalAs(UnmanagedType.IDispatch), In, Out] ref object which,
[MarshalAs(UnmanagedType.I4), In, Out] ref object x,
[MarshalAs(UnmanagedType.I4), In, Out] ref object y,
[MarshalAs(UnmanagedType.I4), In, Out] ref object x);
当我尝试调用该调用时,它抛出一个异常,指出尝试读取/写入无效的内存。
请就此告诉我如何从 .NET 中 P/调用此 C++ API。
Much Thanks, Sundareswaran Senthilvel
最佳答案
你有不同的返回类型,它被声明为返回 void
,但你用 bool
导入它。
关于c++ - .NET 和 C++ 互操作性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9869078/
我是一名优秀的程序员,十分优秀!