Expand Minimize

WinUsb_QueryDeviceInformation function

The WinUsb_QueryDeviceInformation function gets information about the physical device that is associated with a WinUSB interface handle.

Syntax


BOOL __stdcall WinUsb_QueryDeviceInformation(
  _In_     WINUSB_INTERFACE_HANDLE InterfaceHandle,
  _In_     ULONG InformationType,
  _Inout_  PULONG BufferLength,
  _Out_    PVOID Buffer
);

Parameters

InterfaceHandle [in]

An opaque handle to the first interface on the device, which is returned by WinUsb_Initialize.

InformationType [in]

A value that specifies which interface information value to retrieve.

On input, InformationType must have the following value: DEVICE_SPEED (0x01).

BufferLength [in, out]

The maximum number of bytes to read. This number must be less than or equal to the size, in bytes, of Buffer. On output, BufferLength is set to the actual number of bytes that were copied into Buffer.

Buffer [out]

A caller-allocated buffer that receives the requested value.

If InformationType is DEVICE_SPEED, on successful return, Buffer indicates the operating speed of the device. 0x03 indicates high-speed or higher; 0x01 indicates full-speed or lower.

Return value

WinUsb_QueryDeviceInformation returns TRUE if the operation succeeds. Otherwise, this routine returns FALSE, and the caller can retrieve the logged error by calling GetLastError.

GetLastError can return the following error code.

Return codeDescription
ERROR_INVALID_HANDLE

The caller passed NULL in the InterfaceHandle parameter.

 

Requirements

Header

Winusb.h (include Winusb.h)

Library

Winusb.lib

See also

WinUSB
WinUsb_Initialize
WinUSB Functions

 

 

Send comments about this topic to Microsoft

Build date: 12/5/2013

Show:
© 2014 Microsoft. All rights reserved.