Language
|
Description
|
C/C++
|
BOOL UsbPipeClose(IN USB_PIPE_HANDLE hPipe);
|
Delphi
|
function UsbPipeClose(hPipe : USB_PIPE_HANDLE) : BOOL; stdcall;
|
VB
|
Function UsbPipeClose (ByVal hPipe 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 closes handle obtained with UsbPipeOpen. Call UsbPipeClose when all work with pipe is finished.
|
|