在我的C#计划中,我正在调用AT91Boot_Scan
中的sam-ba.dll
功能。在此DLL的documentation中,此函数的签名为void AT91Boot_Scan(char *pDevList)
不幸的是,无论我尝试什么,我都会遇到EntryPointNotFoundException
和ArgumentNullException
错误:
Exception thrown at 0x75E3C54F in MyApp.exe: Microsoft C++ exception: EEMessageException at memory location 0x0038E304.
Exception thrown: 'System.EntryPointNotFoundException' in MyApp.exe
Unable to find an entry point named 'AT91Boot_Scan' in DLL 'sam-ba.dll'.
Exception thrown: 'System.ArgumentNullException' in System.Windows.Forms.dll
我的代码如下,我做错了什么?
[DllImport("sam-ba.dll")]
unsafe public static extern void AT91Boot_Scan(char* pDevList);
unsafe private string[] LoadDeviceList()
{
const int MAX_NUM_DEVICES = 10;
const int BYTES_PER_DEVICE_NAME = 100;
string[] deviceNames = new string[MAX_NUM_DEVICES];
try
{
unsafe
{
// A pointer to an array of pointers of size MAX_NUM_DEVICES
byte** deviceList = stackalloc byte*[MAX_NUM_DEVICES];
for (int n = 0; n < MAX_NUM_DEVICES; n++)
{
// A pointer to a buffer of size 100
byte* deviceNameBuffer = stackalloc byte[100];
deviceList[n] = deviceNameBuffer;
}
// Is casting byte** to char* even legal?
AT91Boot_Scan((char*)deviceList);
// Read back out the names by converting the bytes to strings
for (int n = 0; n < MAX_NUM_DEVICES; n++)
{
byte[] nameAsBytes = new byte[BYTES_PER_DEVICE_NAME];
Marshal.Copy((IntPtr)deviceList[n], nameAsBytes, 0, BYTES_PER_DEVICE_NAME);
string nameAsString = System.Text.Encoding.UTF8.GetString(nameAsBytes);
deviceNames[n] = nameAsString;
}
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
return deviceNames;
}
答案 0 :(得分:0)
遵循David Tansey在评论中的解决方案,我应该采用的方式是添加sam-ba.dll
作为COM参考(解决方案资源管理器&gt;参考&gt;添加参考&gt;浏览)。然后只是实例化一个ISAMBADLL
类对象并通过该类调用方法。