GetLogCount()
Gets the log count of the main partition.
C#
[DllImport("RGUSBdrv.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern UInt16 GetLogCount();
Returns:
Number of Log Files in the eMMC
C# Example:
private void button2_Click(object sender, EventArgs e)
{
if (Connected)
richTextBox1.AppendText(Convert.ToString(GetLogCount()) + "\n");
}
Last updated