gpt4 book ai didi

c# - 将结构传递给非托管代码时出现 System.AccessViolationException

转载 作者:行者123 更新时间:2023-11-30 15:35:46 33 4
gpt4 key购买 nike

我正在尝试使用来自 C# 的非托管 API,并用头撞墙。 (就 PInvoke 而言,我是一个初学者。)

头文件的相关部分如下所示:

#define CTAPICALL       __stdcall
#ifdef __cplusplus
extern "C" {
#endif

extern BOOL CTAPICALL ctTagReadEx(HANDLE,LPCSTR,LPSTR,DWORD,CT_TAGVALUE_ITEMS*); /* read extended data from tag */

#ifdef __cplusplus
}
#endif

CT_TAGVALUE_ITEMS 看起来像这样:

typedef struct
{
DWORD dwLength; /* size, in bytes, of this structure */
unsigned __int64 nTimestamp; /* timestamp */
unsigned __int64 nValueTimestamp; /* value timestamp */
unsigned __int64 nQualityTimestamp; /* quality timestamp */
BYTE bQualityGeneral; /* quality general */
BYTE bQualitySubstatus; /* quality substatus */
BYTE bQualityLimit; /* quality limit */
BYTE bQualityExtendedSubstatus; /* quality extended substatus */
UINT nQualityDatasourceErrorCode; /* quality datasource error */
BOOLEAN bOverride; /* quality override flag */
BOOLEAN bControlMode; /* quality control mode flag */
} CT_TAGVALUE_ITEMS;

我的 C# 方法声明:

    [DllImport("ctapi.dll", SetLastError = true)]
public static extern bool ctTagReadEx(
IntPtr hCTAPI,
[MarshalAs(UnmanagedType.LPStr)] string tag,
[MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder value,
int length,
CtTagValueItems tagValueItems);

C# 结构:

[StructLayout(LayoutKind.Sequential)]
public struct CtTagValueItems
{
public int dwLength;
public ulong nTimestamp;
public ulong nValueTimestamp;
public ulong nQualityTimestamp;
public byte bQualityGeneral
public byte bQualitySubstatus;
public byte bQualityLimit;
public byte bQualityExtendedSubstatus;
public uint nQualityDatasourceErrorCode;
public uint bOverride;
public uint bControlMode;
}

当我这样调用它时(来自构建为 x86 的测试程序集),我得到一个 System.AccessViolationException : Attempted to read or write protected memory:

StringBuilder valueBuilder = new StringBuilder(300);
CtTagValueItems tagValueItems = new CtTagValueItems {dwLength = Marshal.SizeOf(typeof (CtTagValueItems))};
bool ok = CTAPI.ctTagReadEx(new IntPtr(handle), "TIC_Hold_PV", valueBuilder, valueBuilder.Capacity, tagValueItems);

我一直在尝试各种方法,例如使用 LayoutKind.Explicit 和/或 CallingConvention = CallingConvention.Cdecl,但无济于事。

有人可以帮忙吗?

最佳答案

  1. 为什么将 UINT 映射为 ushort。它不是有 4 个字节吗?
  2. native BOOLEAN 类型映射到 4 个字节,AFAIK。
  3. 您需要通过 ref 传递 CtTagValueItems(作为类或 ref)。
  4. 检查调用约定。
  5. 检查评论中写的内容。

关于c# - 将结构传递给非托管代码时出现 System.AccessViolationException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14505104/

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