我有以下C ++函数和C#p / invoke decleration:
//C#
[DllImport("capture.dll", EntryPoint = "setup")]
public static extern void captureSetup(int rr);
//C++
extern "C" {
__declspec(dllexport) void setup(int rr)
但是我收到一个关于p / invoke不平衡堆栈的错误,可能是由于托管签名与非托管签名不匹配造成的。
有人能看出这有什么问题吗?
答案 0 :(得分:6)
这是一个呼叫惯例不匹配。 C ++代码默认使用cdecl
,但C#假定为stdcall
。你需要让它们匹配,例如
[DllImport("capture.dll", EntryPoint = "setup",
CallingConvention = CallingConvention.Cdecl)]
public static extern void captureSetup(int rr);