• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#调用C++DLL传递指向指针的指针参数的方法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 

 

C++结构体定义:

struct DeviceInfo
{    
    char szDeviceName[DEVICE_NAME_LEN];
    char szMACAddress[MAC_ADDRESS_LEN];        
    char szDeviceIP[DEVICE_IP_LEN];
};

 

C#结构体的定义:

    [StructLayout(LayoutKind.Sequential)]
   public struct DeviceInfo
    {
          [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 50)]
        public string szDeviceName;

         [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 13)]
          public string szMACAddress;

         [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 17)]
         public string szDeviceIP; 


    }

 

情况1:C++的dll负责分配内存

C++导出函数的声明

#define DLL_API  extern "C"  __declspec(dllexport)
DLL_API int findAllDevices(DeviceInfo** ppDeviceInfoList,int * pCount);

C#导入函数的声明

[DllImport("IPAlter_d.dll")]
        public extern static int findAllDevices(out IntPtr pDeviceInfo, ref int pCount);

C#的调用方法:

 IntPtr pBuff = new IntPtr();//直接new一个参数即可



            if (IPAlter.findAllDevices(out pBuff, ref cout) != 1)
            {
                System.Console.WriteLine("搜索失败!");
                System.Console.ReadLine();
                return;
            }

          
            for (int i = 0; i < cout; i++)
            {

                IntPtr pPonitor = new IntPtr(pBuff.ToInt64() + Marshal.SizeOf(typeof(DeviceInfo)) * i);
              

              System.Console.WriteLine(((DeviceInfo)Marshal.PtrToStructure(pPonitor, typeof(DeviceInfo))).szDeviceName);
                System.Console.WriteLine(((DeviceInfo)Marshal.PtrToStructure(pPonitor, typeof(DeviceInfo))).szDeviceIP);
                System.Console.WriteLine(((DeviceInfo)Marshal.PtrToStructure(pPonitor, typeof(DeviceInfo))).szMACAddress);
            }

 

情况2:C#负责分配内存

C++导出函数的声明:

DLL_API int findAllDevice(DeviceInfo* ppDeviceInfoList,int * pCount);

 

 C#导入函数的声明:

 [DllImport("IPAlter_d.dll")]
        public extern static int findAllDevice(IntPtr pDeviceInfo, ref int pCount);

 

 C#的调用方法:

            DeviceInfo[] DeviceInfoList = new DeviceInfo[50];
            int size = Marshal.SizeOf(typeof(DeviceInfo)) * 50;
            byte[] bytes = new byte[size];
            IntPtr pBuff = Marshal.AllocHGlobal(size);



            if (IPAlter.findAllDevice(pBuff, ref cout) != 1)
            {
                System.Console.WriteLine("搜索失败!");
                System.Console.ReadLine();
                return;
            }


            for (int i = 0; i < cout; i++)
            {

                IntPtr pPonitor = new IntPtr(pBuff.ToInt64() + Marshal.SizeOf(typeof(DeviceInfo)) * i);
                DeviceInfoList[i] = (DeviceInfo)Marshal.PtrToStructure(pPonitor, typeof(DeviceInfo));

                System.Console.WriteLine(DeviceInfoList[i].szDeviceName);
                System.Console.WriteLine(DeviceInfoList[i].szDeviceIP);
                System.Console.WriteLine(DeviceInfoList[i].szMACAddress);
            }
            Marshal.FreeHGlobal(pBuff);

 

可以参考:

http://www.cnblogs.com/cxwx/archive/2010/12/29/1921140.html

http://hi.baidu.com/fanr520/item/e761f9ca0766d462f6c95d55

http://blog.csdn.net/wangweitingaabbcc/article/details/7663949


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#自定义集合类发布时间:2022-07-10
下一篇:
C#vs2005中如何获取datagridview中单元格的值发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap