mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
22 lines
499 B
C#
22 lines
499 B
C#
/* WinUSBNet library
|
|
* (C) 2010 Thomas Bleeker (www.madwizard.org)
|
|
*
|
|
* Licensed under the MIT license, see license.txt or:
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
*/
|
|
|
|
namespace MadWizard.WinUSBNet.API
|
|
{
|
|
internal struct DeviceDetails
|
|
{
|
|
public string DevicePath;
|
|
public string Manufacturer;
|
|
public string DeviceDescription;
|
|
public ushort VID;
|
|
public ushort PID;
|
|
|
|
// Heathcliff74
|
|
public string BusName;
|
|
}
|
|
}
|