QuickUsbFindModules (quickusb)
Last changed: eggie5-149.63.77.160

.
Summary
Retrieves all attached quickUsb devices

C# Signature:

[DllImport("quickusb.dll", CharSet = CharSet.Ansi)]
private static extern int QuickUsbFindModules(StringBuilder nameList, int bufferLength);

Notes:

This function will return a null delimited "\0" list of attached devices. For example, after executing this function with one module connected, nameList will contain "QUSB-0\0\0". If there are two devices plugged in, nameList will contain "QUSB-0\0QUSB-1\0\0".

Tips & Tricks:

Please add some!

Sample Code:

Please add some!