怎样才能把DLL的结构体数据传到c#结构体里来?
DLL是c生成的,入口点是main函数,DLL的结构体没有用头文件而是放在主函数中请问高手们怎样才能把DLL的结构体数据传到c#结构体里来?谢!我下面的程序少了那些语句?...
DLL是c生成的,入口点是main函数,DLL的结构体没有用头文件 而是放在主函数中 请问高手们怎样才能把DLL的结构体数据传到c#结构体里来?谢!
我下面的程序少了那些语句?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace ConsoleApplication1
{
class Program
{
[DllImport("JMdll.dll", EntryPoint = "main", CallingConvention = CallingConvention.Cdecl)]
public static extern byte main(byte input0);
[DllImport("JMdll.dll", EntryPoint = "main", CallingConvention = CallingConvention.Cdecl)]
public static extern byte main(ref MyBuf mydata);
[StructLayout(LayoutKind.Sequential)]
public struct MyBuf //c#结构体
{
public byte out0;
}
static void Main(string[] args)//C#主函数
{
MyBuf Aastruct = new MyBuf();//这里这个语句应该怎样执行 才能把DLL数据传过来
byte Pout0 = Aastruct.out0;
Console.WriteLine(Pout0);
Console.ReadKey();
}
}
}
[StructLayout(LayoutKind.Sequential)]
public struct MyBuf
{
public byte out0;
}//*/
static void Main(string[] args)
{
byte[] inputA; inputA = new byte[16] { 0x3F,};
byte AABB = main(inputA[0], inputA[1],);
string Amain0 = Convert.ToString(AABB, 16).ToUpper().PadLeft(2, '0');
MyBuf Aastruct = new MyBuf();
//下面应该执行怎样的语句 才能把c写的DLL结构体数据传过来
byte Pout0 = Aastruct.out0;
Console.WriteLine(Pout0);
Console.ReadKey();
}
}
}
public static extern byte main(byte input0); 在c的DLL主函数(入口点)中有变量
是这样的
main(byte input0)
{
struct MyBuf
{
uint8_t out0;
}mydata;
}
c#主函数我发重了 多发了一遍 展开
我下面的程序少了那些语句?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace ConsoleApplication1
{
class Program
{
[DllImport("JMdll.dll", EntryPoint = "main", CallingConvention = CallingConvention.Cdecl)]
public static extern byte main(byte input0);
[DllImport("JMdll.dll", EntryPoint = "main", CallingConvention = CallingConvention.Cdecl)]
public static extern byte main(ref MyBuf mydata);
[StructLayout(LayoutKind.Sequential)]
public struct MyBuf //c#结构体
{
public byte out0;
}
static void Main(string[] args)//C#主函数
{
MyBuf Aastruct = new MyBuf();//这里这个语句应该怎样执行 才能把DLL数据传过来
byte Pout0 = Aastruct.out0;
Console.WriteLine(Pout0);
Console.ReadKey();
}
}
}
[StructLayout(LayoutKind.Sequential)]
public struct MyBuf
{
public byte out0;
}//*/
static void Main(string[] args)
{
byte[] inputA; inputA = new byte[16] { 0x3F,};
byte AABB = main(inputA[0], inputA[1],);
string Amain0 = Convert.ToString(AABB, 16).ToUpper().PadLeft(2, '0');
MyBuf Aastruct = new MyBuf();
//下面应该执行怎样的语句 才能把c写的DLL结构体数据传过来
byte Pout0 = Aastruct.out0;
Console.WriteLine(Pout0);
Console.ReadKey();
}
}
}
public static extern byte main(byte input0); 在c的DLL主函数(入口点)中有变量
是这样的
main(byte input0)
{
struct MyBuf
{
uint8_t out0;
}mydata;
}
c#主函数我发重了 多发了一遍 展开
若以下回答无法解决问题,邀请你更新回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询