@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: TODO - a short description !!!!C# Signature: [DllImport("winusb.dll", SetLastError=true)] static extern Boolean WinUsb_QueryDeviceInformation( SafeFileHandle InterfaceHandle, UInt32 InformationType, ref UInt32 BufferLength, byte[] Buffer); !!!!VB Signature: Declare Function WinUsb_QueryDeviceInformation Lib "winusb.dll" (TODO) As TODO !!!!User-Defined Types: const ULONG DEVICE_SPEED = 1; !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: UInt32 bufferLength = 100; byte[] buffer = new byte[bufferLength]; var success = WinUsb_QueryDeviceInformation(_winUsbHandle, DEVICE_SPEED, ref bufferLength, buffer); Documentation: https://learn.microsoft.com/en-us/windows/win32/api/winusb/nf-winusb-winusb_querydeviceinformation
Edit winusb.WinUsb_Que...
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.