c# 调用C++ dll,无法在 DLL“ScanDll.dll”中找到名为“ StartScan ”的入口点
c#调用usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSyste...
c#调用
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace TestDllCsharp
{
public partial class Form1 : Form
{
public class RefComm
{
[DllImport("ScanDll.dll", EntryPoint = " StartScan ", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern string StartScan(int rt, int intv,string filename);
}
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string strTotal =RefComm.StartScan(5, 5,"aps.txt");
textBox1.Text = strTotal;
}
}
}
c++函数
extern "C" __declspec(dllexport)string StartScan(int rt,int intv,char* filename)
为什么出现这样的错误呢? 展开
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace TestDllCsharp
{
public partial class Form1 : Form
{
public class RefComm
{
[DllImport("ScanDll.dll", EntryPoint = " StartScan ", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern string StartScan(int rt, int intv,string filename);
}
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string strTotal =RefComm.StartScan(5, 5,"aps.txt");
textBox1.Text = strTotal;
}
}
}
c++函数
extern "C" __declspec(dllexport)string StartScan(int rt,int intv,char* filename)
为什么出现这样的错误呢? 展开
展开全部
[DllImport("ScanDll.dll", EntryPoint = " StartScan ", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
这一行
"StartScan"引号中的内容不能有空格
这一行
"StartScan"引号中的内容不能有空格
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
只能说明 C#在访问 StartScan 这个函数是没有成功。
你用dll查看器,看看已经生成的dll文件里面StartScan函数原型是否与调用的
一致?
你用dll查看器,看看已经生成的dll文件里面StartScan函数原型是否与调用的
一致?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
写错了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个你要看看你的DLL中有没有StartScan的哈,还有你要注意大小写的问题的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询