Language
|
Description
|
C/C++
|
BOOL UsbPipeGetType(IN USB_PIPE_HANDLE hPipe,
| OUT RDUSB_PIPE_TYPE* pPipeType);
|
|
Delphi
|
function UsbPipeGetType(hPipe : USB_PIPE_HANDLE;
var PipeType : RAPIDUSB_PIPE_TYPE) : BOOL; stdcall;
|
VB
|
Function UsbPipeGetType (ByVal hPipe As Long, _
ByRef PipeType As Long) 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
| Function retrieves pipe type.
|
|