Language
|
Description
|
C/C++
|
BOOL UsbPipeGetInfo(IN USB_PIPE_HANDLE hPipe,
| OUT PRDUSB_PIPE_INFORMATION pPipeInfo);
|
|
Delphi
|
function UsbPipeGetInfo(hPipe : USB_PIPE_HANDLE;
var PipeInfo : RAPIDUSB_PIPE_INFORMATION) : BOOL; stdcall;
|
VB
|
Function UsbPipeGetInfo (ByVal hPipe As Long, _
ByRef PipeInfo As RDUSB_PIPE_INFORMATION) As Boolean
|
Parameters
| Specifies pipe handle. This handle can be obtained with UsbPipeOpen.
|
Return Value
| If function fails it return FALSE. To detect error call GetLastError function.
| Description
| Call this function to define currently active settings of USB pipe.
|
|