QuickUsbOpen (quickusb)
Last changed: -85.99.88.237

.
Summar
Opens the QuickUSB module for programming. This is the first thing you need to do in order to use the USB module. Just send a refrence of an empty handle and name. QuickUsbOpen will return 0 if un-successful.

C# Signature:

[DllImport("quickusb.dll", CharSet = CharSet.Ansi)]
    static extern int QuickUsbOpen(out IntPtr handle, string devName);

Notes:

Make sure devName="QUSB-0\0\0";

Tips & Tricks:

Please add some!

Sample Code:

private IntPtr handle;
string deviceName="QUSB-0\0\0";

int result = QuickUsbOpen(out handle, deviceName);