Marsshall char** 用于从托管代码调用非托管代码时串起问题



我有这个C++函数,

    bool MyClass::my_function(int num, TCHAR** filepath)

我已经将函数公开为

    extern "C"
    {
      __declspec(dllexport) bool MyFunction(int num, char* filepath[])
      {
          OutputDebugStringA("--MyFunction--");
          TCHAR **w_filepath = (TCHAR **)calloc(num, 2* sizeof(TCHAR **));
          for(int i = 0; i < num; i++) 
          {
            OutputDebugStringA(filepath[i]);
            int len = strlen(filepath[i]) + 1;
            w_filepath[i] = (TCHAR *)calloc (1, len);
            ctow(w_filepath[i], filepath[i]); // converts char to WCHAR
          }
          bool ret = MyClass.my_function(num, w_filepath);
          OutputDebugStringA("End -- MyFunction --");
          free(w_filepath);
          return ret;
      }
    }

我有 C# 包装器 作为

    [DllImport("MyDll.dll")]
    public static extern bool MyFunction(int num, [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPTStr)] string[] filepath);

在 C# 中,我将 Myfunction 称为

    string [] filepath = { "D:\samplefile\abc.txt", "D:\samplefile\def.txt"}
    MyFunction(2, filepath)

在C++函数中,它只获取文件路径的第一个字符。例如,如果我使用 C++ 代码打印,则从上面调用

    OutputDebugStringA

它只打印第一个和第二个的 D。

如果我删除

    [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPTStr)]

从 C# 包装器我将在 中收到访问冲突错误

    w_filepath[i] = (TCHAR *)calloc (1, len) 

对于第二个文件。

请帮助我。

1) w_filepath[i] = (TCHAR *)calloc (1, len); - calloc 需要以字节为单位的大小,所以它应该是w_filepath[i] = (wchar_t *)calloc (1, len*sizeof(wchar_t));

2)来自C#的数据以wchar_t*的形式出现,所以你根本不需要转换例程,应该将函数声明更改为

__declspec(dllexport) bool MyFunction(int num, wchar_t* filepath[])

相关内容

  • 没有找到相关文章

最新更新