I have a C# Winform application using WinUSB host API to communicate with a
USB device. If I call WinUsb_ReadPipe(IntPtr InterfaceHandle, Byte PipeID,
ref Byte Buffer, UInt32 BufferLength, ref UInt32 LengthTransferred, IntPtr
Overlapped), the value of LengthTransferred is the cached data in bulk in
pipe. But doing this way, also flush the cached data. Anyone know a way to do
it withoud flush the cached data?
Thanks.
Steve