gpt4 book ai didi

c# - 尝试读取或写入 protected 内存。这通常表明其他内存已损坏 DllImport

转载 作者:行者123 更新时间:2023-11-30 02:32:52 27 4
gpt4 key购买 nike

我用 C++ 创建了一个 dll。我在该 dll 中有一个函数,其中包含以下代码。

__declspec(dllexport) void MyFunction(CString strPath)
{
BYTE startBuffer[] = { 80, 75, 5, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0 };
FILE *f = _wfopen(strPath.GetBuffer(strPath.GetLength()), _T("wb"));
if (f != NULL)
{
strPath.ReleaseBuffer();
fwrite(startBuffer, sizeof(startBuffer), 1, f);
fclose(f);
}
}

如果我注释掉这一行然后调用dll。不会有任何问题。

调用约定如下:

[DllImport("OutExt.dll",CharSet=CharSet.Unicode)]
static extern void MyFunction([MarshalAs(UnmanagedType.LPStr)] string strPath);

有人请帮我解决这个问题。

最佳答案

CString 是 native C++ 类,无法使用 p/invoke 进行编码。您将需要使用一个指针空终止字符数组。

或者:

__declspec(dllexport) void MyFunction(const char *strPath)

如果您必须限制自己使用遗留的 ANSI 代码页,或者

__declspec(dllexport) void MyFunction(const wchar_t *strPath)

用于 Unicode。

在 C# 端,声明将是:

[DllImport("OutExt.dll", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.Cdecl)]
static extern void MyFunction(string strPath);

[DllImport("OutExt.dll", CharSet = CharSet.Unicode, CallingConvention = CallingConvention.Cdecl)]
static extern void MyFunction(string strPath);

分别。

关于c# - 尝试读取或写入 protected 内存。这通常表明其他内存已损坏 DllImport,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35938414/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com