将嵌套结构从C#编组到C++;动态链接库

将嵌套结构从C#编组到C++;动态链接库,c#,c++,struct,enums,marshalling,C#,C++,Struct,Enums,Marshalling,我试图调用C++中的函数到Borland C++中的一个.dll,其签名是: extern "C" __declspec(dllexport) ls50errortype __stdcall Ls50P2Open(ls50p2apiconfiginfostruct &configinfo); C#中的相应调用: 兴趣结构(LS502APICONFIGIN FIXTRONT)由嵌套结构和枚举(从C++头文件复制)组成: 下面是C#中相应的结构: 下面是我用来调用函数的C#代码:

我试图调用C++中的函数到Borland C++中的一个.dll,其签名是:

extern "C" __declspec(dllexport) ls50errortype __stdcall Ls50P2Open(ls50p2apiconfiginfostruct &configinfo);
C#中的相应调用:

兴趣结构(LS502APICONFIGIN FIXTRONT)由嵌套结构和枚举(从C++头文件复制)组成:

下面是C#中相应的结构:

下面是我用来调用函数的C#代码:

    ls50p2apiconfiginfostruct lscfg = new ls50p2apiconfiginfostruct();

    lscfg.CardConfigInfo = new ls50p2cardconfigstruct[8];
    for (int i = 0; i < 8; i++)
    {
        lscfg.CardConfigInfo[i].ChannelDataTypeAry = new ls50p2daughtercardtype[2];
    }

    lscfg.DataInfo = new ls50p2carddatastruct[8, 2];

    Ls50P2Open(ref lscfg);
你的C#结构是什么样子的。您正在使用StructLayoutAttribute吗?


您可以将它与sequential选项一起使用,这样您只需按照正确的顺序用字段填充c#结构

我相信这里或多或少地回答了数组问题

接受的答案显示了如何安全地封送动态分配的数组

至于枚举,它们不应该造成任何问题,有一个干净的1:1映射。事实上,我会按照这篇msdn帖子中的描述去做

您只需在一个.cs文件中定义所有枚举,然后将其包含在两个项目中,一切都会正常工作

typedef enum
{
    MFMODEL_LS50P1,
    MFMODEL_4422PCI,
    MFMODEL_LS50P2,
    MFMODEL_LS70P2,
    MFMODEL_LS5070,
    MFMODEL_LAST
}ecardmodel;    

typedef enum
{
    CHANNELDEVICE_NONE,
    CHANNELDEVICE_50,
    CHANNELDEVICE_70,
    CHANNELDEVICE_LAST
}ls50p2channeldevicetype;

typedef enum
{
    LS50V2DCARD_NONE, 
    LS50V2DCARD_40V1_10,
    LS50V2DCARD_40V1_20,
    LS50V2DCARD_40V2_10,
    LS50V2DCARD_40V2_20,
    LS50V2DCARD_38,
    LS50V2DCARD_LAST
}ls50p2daughtercardtype;


typedef struct
{
    bool HasDaughterCard;
    ls50p2daughtercardtype DCardType;
    bool SpecialStatusCapable;

    int MaxBitsyncInputs;
    bool HasBitsyncConfidenceLevel;

    bool HasBitsync2ndCh;
    bool SpecialStatusCapable2ndCh;
    bool HasBitsyncConfidenceLevel2ndCh;

    ls50p2daughtercardtype DCardType2ndCh;
    int MaxBitsyncInputs2ndCh;
}ls50p2daughtercardinfostruct;

typedef struct
{
    ecardmodel DeviceModel;
    ls50p2channeldevicetype ChannelDataTypeAry[2];
    ls50p2daughtercardinfostruct DaughterCardInfo;

    bool HasExtendedBertPatterns;

    int FirmwareVersionAry[2];
    int NumPremodFiltersAry[2];
    double Ls50SimPreModFilterKhzAry[2][LS50V2_MAX50SIMPREMODFILTERS];
    double Ls50SimMinFmDeviationKhzAry[2];
    double Ls50SimMaxFmDeviationKhzAry[2];
}ls50p2cardconfigstruct;

typedef struct
{
    unsigned char *DataBuf;
    HANDLE hNewDataRdy;
    DWORD MaxBufLength;
    DWORD CurrentBufLength;
    int NumHeaderBytes;
}ls50p2carddatastruct;

typedef struct
{
    ls50p2cardconfigstruct CardConfigInfo[MAXMFCARDS];
    int Ls50P2CardCount;
    ls50p2carddatastruct DataInfo[MAXMFCARDS][2];
}ls50p2apiconfiginfostruct;
    public enum ecardmodel
    {
        MFMODEL_LS50P1,
        MFMODEL_4422PCI,
        MFMODEL_LS50P2,
        MFMODEL_LS70P2,
        MFMODEL_LS5070,
        MFMODEL_LAST
    }

    public enum ls50p2channeldevicetype
    {
        CHANNELDEVICE_NONE,
        CHANNELDEVICE_50,
        CHANNELDEVICE_70,
        CHANNELDEVICE_LAST
    };

    public enum ls50p2daughtercardtype
    {
        LS50V2DCARD_NONE,
        LS50V2DCARD_40V1_10,
        LS50V2DCARD_40V1_20,
        LS50V2DCARD_40V2_10,
        LS50V2DCARD_40V2_20,
        LS50V2DCARD_38,
        LS50V2DCARD_LAST
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct ls50p2daughtercardinfostruct
    {
        public bool HasDaughterCard;
        public ls50p2daughtercardtype DCardType;
        public bool SpecialStatusCapable;

        public int MaxBitsyncInputs;
        public bool HasBitsyncConfidenceLevel;

        public bool HasBitsync2ndCh;
        public bool SpecialStatusCapable2ndCh;
        public bool HasBitsyncConfidenceLevel2ndCh;

        public ls50p2daughtercardtype DCardType2ndCh;
        public int MaxBitsyncInputs2ndCh;
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct ls50p2cardconfigstruct
    {
        public ecardmodel DeviceModel;
        public ls50p2daughtercardtype[] ChannelDataTypeAry;
        public ls50p2daughtercardinfostruct DaughterCardInfo;

        public bool HasExtendedBertPatterns;

        public int[] FirmwareVersionAry;
        public int[] NumPremodFiltersAry;
        public double[] Ls50SimPreModFilterKhzAry;
        public double[] Ls50SimMinFmDeviationKhzAry;
        public double[] Ls50SimMaxFmDeviationKhzAry;
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct ls50p2carddatastruct
    {
        public StringBuilder DataBuf;
        public IntPtr hNewDataRdy;
        public uint MaxBufLength;
        public uint CurrentBufLength;
        public int NumHeaderBytes;
    }

    [StructLayout(LayoutKind.Sequential)]
    public struct ls50p2apiconfiginfostruct
    {
        public ls50p2cardconfigstruct[] CardConfigInfo;
        public int Ls50P2CardCount;
        public ls50p2carddatastruct[,] DataInfo;
    }
    ls50p2apiconfiginfostruct lscfg = new ls50p2apiconfiginfostruct();

    lscfg.CardConfigInfo = new ls50p2cardconfigstruct[8];
    for (int i = 0; i < 8; i++)
    {
        lscfg.CardConfigInfo[i].ChannelDataTypeAry = new ls50p2daughtercardtype[2];
    }

    lscfg.DataInfo = new ls50p2carddatastruct[8, 2];

    Ls50P2Open(ref lscfg);
An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in Library.dll

Additional information: Old format or invalid type library. (Exception from HRESULT: 0x80028019 (TYPE_E_UNSUPFORMAT))