对PInvoke函数xxx的调用使堆栈失衡

时间:2013-04-12 10:34:11

标签: c# c marshalling output-parameter

我在控制台应用程序中使用C#代码(.net 4.0)中的C DLL并面临问题。 当我调用C方法时,它会引发以下异常。

"A call to PInvoke function 'ProcessFilesC' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature."

这是C代码

    int ProcessFilesC(
        char **p_FilesOrDirs,
        ImageInfoC **p_vecImageInfo,
        int ***p_vecStackIndexes,
        RectC ***p_vecFaces
    );    

这是我的C#代码

    [DllImport(@"..\ref\myCApp.dll", CallingConvention = CallingConvention.StdCall)]
    unsafe private static extern UInt16 ProcessFilesC(
               String[] p_FilesOrDirs,
               ref ImageInfoC[] p_vecImageInfo,
               out Int32[] p_vecStackIndexes,
               out RectC[] p_vecFaces
            );


    public unsafe struct ImageInfoC
    {            
        public String resizedFilePath;      //char*   (in C)
        public Byte isUsable;               //unsigned char (in C)
        public UInt32 imageId;              //long int in (in C)
        public UInt16 stackIndex;           //int (in C)
        public Boolean isBestPhoto;         //unsigned char  (in C)
    }

下面是调用方法的C#代码

    unsafe
        {
             iResult = ProcessFilesC(
                              p_FilesOrDirs,          // Value getting passed to DLL
                              ref p_vecImageInfo,
                              out p_vecStackIndexes,
                              out p_vecFaces
                        );
             Console.WriteLine("ProcessFilesC Complete");
        }

当代码到达此处时,我可以看到该方法正在处理,因为它在控制台中打印,但在处理之后,它会引发上述异常。

我猜这是因为C DLL试图在output / ref参数中写入值。 我没有得到问题的位置或我的代码中的错误。

请注意,我已在工具 - >中取消选中“在模块加载时抑制JIT优化”选项。选项 - >调试 - >一般

请尽快帮忙。

感谢花费宝贵的时间阅读这篇文章。

谢谢, 基兰

1 个答案:

答案 0 :(得分:1)

要检查的第一件事是调用约定。在大多数情况下,DllImport属性中指定的调用约定与本机DLL中的实际调用约定不同。