如何使用结构的指针数组定义函数作为从 C 到 C# 的参数
本文关键字:参数 函数 结构 何使用 指针 数组 定义 | 更新日期: 2023-09-27 17:55:19
在 C 代码中,函数的定义如下:
INT WINAPI myFunction(LPCTSTR str1, LPCTSTR str2, INT iNumber,
LPSTRUCT *lpStruct);
*lpStruct
是结构类型的指针数组:
typedef struct myStruct
{
CHAR m_s1[64];
UINT m_nS;
CHAR m_s2[8][64];
UINT m_nP;
CHAR m_s3[512];
} SomeStruct, *LPSTRUCT;
我需要在 C# 中调用这个外部myFunction
,我SomeStruct
定义为:
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
public struct SomeStruct
{
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 64)]
public string m_s1;
public uint m_nS;
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 512)]
public string m_s2;
public uint m_nP;
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 512)]
public string m_s3;
}
我的功能为:
[DllImport("some.dll")]
public static extern int myFunction(
string str1,
string str2,
int iNumber,
IntPtr[] lpStruct);
我在 C# 中初始化 IntPtr[]:
IntPtr[] lpptr = new IntPtr[iNumber];
我知道指针的结构数组有iNumber
元素。
调用此函数没有错误(lpStruct[i]
有数字)。但是当我尝试使用以下方法封送指向结构的指针时:
SomeStruct st = (SomeStruct )Marshal.PtrToStructure(lpStruct[i],
typeof(SomeStruct ));
我收到错误消息:尝试写入只读内存。我不知道这里出了什么问题。是 C# 中的外部函数定义错误还是结构定义错误,还是两者兼而有之。
这个问题缺少重要的细节,但我希望您需要为数组中的每个 IntPtr 分配内存。
IntPtr[] lpptr = new IntPtr[iNumber];
for (int i=0; i<iNumber; i++)
lpptr[i] = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(SomeStruct)));
显然,一旦你完成了记忆,你应该释放内存。
尝试在
C# 中将结构定义为类
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Ansi)]
internal class SomeStruct
{
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 64)]
public string m_s1;
public UInt32 m_nS;
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 512)]
public string m_s2;
public UInt32 m_nP;
[MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 512)]
public string m_s3;
}
也试试 UInt32 代替 uint