In my C# program, I'm making a call to the AT91Boot_Scan
function in sam-ba.dll
. In the documentation for this DLL, the signature for this function is void AT91Boot_Scan(char *pDevList)
Unfortunately, no matter what I try I keep getting EntryPointNotFoundException
and ArgumentNullException
errors:
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
My code is as follows, what am I doing wrong?
[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;
}
Following David Tansey's solution in the comments, the way I should've gone about doing this was adding sam-ba.dll
as a COM reference (Solution Explorer > References > Add References > Browse). Then just instantiating a ISAMBADLL
class object and calling the methods through that class.