我想DllImport以下功能。然而," ret"返回true,但我的字符串数组似乎是空的,所以我想我可能需要一些编组。欢迎任何提示!在此先感谢:)
C函数:
bool getBootLog(char **a1);
以下代码用于测试,但无法正常运行。
DllImport:
[DllImport("ext.dll")]
public static extern bool getBootLog(string[] bootLog);
当前代码:
string[] bootLog = new string[1024 * 1024];
bool ret = getBootLog(bootLog);
foreach (string s in bootLog)
{
Debug.WriteLine(s);
}
另外2次尝试不起作用:
var ptr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(IntPtr)));
try
{
getBootLog(out ptr);
var deref1 = (string)Marshal.PtrToStringAnsi(ptr);
Debug.WriteLine(deref1);
}
finally
{
Marshal.FreeHGlobal(ptr);
}
var ptr2 = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(IntPtr)));
try
{
getBootLog(out ptr2);
var deref1 = (IntPtr)Marshal.PtrToStructure(ptr2, typeof(IntPtr));
var deref2 = (string[])Marshal.PtrToStructure(deref1, typeof(string[]));
Debug.WriteLine(deref2);
}
finally
{
Marshal.FreeHGlobal(ptr2);
}
莫赫森的想法:
[DllImport("Ext.dll")]
public static extern bool getBootLog(StringBuilder bootLog);
try
{
int bufferSize = 50;
StringBuilder bootLog = new StringBuilder(" ", bufferSize);
Debug.WriteLine("Prepared bootLog...");
getBootLog(bootLog);
Debug.WriteLine("Bootlog length: " + bootLog.Length);
string realString = bootLog.ToString();
Debug.WriteLine("Bootlog: " + realString);
}
catch(Exception ex)
{
Debug.WriteLine("Xception: " + ex.ToString());
}
结果:
准备好bootLog ... Bootlog长度:0 Bootlog:
答案 0 :(得分:0)
修正声明:
[DllImport("ext.dll", CharSet = CharSet.Ansi)]
public static extern bool getBootLog(ref IntPtr bootLogPtr);
编辑后的代码版本中的尝试行看起来不正确。
var ptr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(IntPtr)));
实际上,应该指定缓冲区的大小。
var ptr = Marshal.AllocHGlobal(100); // Set it to 100 bytes, maximum!
将长度写入ptr
,因为它是一个C样式的空终止字符串。
Marshal.WriteByte(ptr, 100, 0);
然后调用最重要的电话:
IntPtr ptrBuf = ptr;
getBootLog(ref ptrBuf);
将ptrBuf
的缓冲区内容复制到字符串变量中:
string sBootLog = Marshal.PtrToStringAnsi(ptrBuf);
清理非托管内存:
Marshal.FreeHGlobal(ptr);