Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DeviceDetails.cs « API « WinUSBNet « FelLib - github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ada560c34d026861b95a9db2baf01f6292fd7d1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*  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
 */

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MadWizard.WinUSBNet.API
{
    internal struct DeviceDetails
    {
        public string DevicePath;
        public string Manufacturer;
        public string DeviceDescription;
        public ushort VID;
        public ushort PID;
    }
}