Language
|
Description
|
C/C++
|
BOOL UsbPipeAbort(IN USB_PIPE_HANDLE hPipe);
|
Delphi
|
function UsbPipeAbort(hPipe : USB_PIPE_HANDLE) : BOOL; stdcall;
|
VB
|
Function UsbPipeAbort (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
| Call this function to indicate that all outstanding requests for a pipe should be canceled.
|
|