Migrate WinUSBNet code to a standalone project dependency

This commit is contained in:
Gustave Monce
2025-11-01 09:28:08 +01:00
parent 1cc7a5cee4
commit 058cde0d91
25 changed files with 659 additions and 15 deletions
+21
View File
@@ -0,0 +1,21 @@
/* 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;
}
}