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

github.com/ClusterM/clovershell-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibWinUsb/Main/WriteEndpointID.cs')
-rw-r--r--LibWinUsb/Main/WriteEndpointID.cs89
1 files changed, 89 insertions, 0 deletions
diff --git a/LibWinUsb/Main/WriteEndpointID.cs b/LibWinUsb/Main/WriteEndpointID.cs
new file mode 100644
index 0000000..feac114
--- /dev/null
+++ b/LibWinUsb/Main/WriteEndpointID.cs
@@ -0,0 +1,89 @@
+// Copyright © 2006-2010 Travis Robinson. All rights reserved.
+//
+// website: http://sourceforge.net/projects/libusbdotnet
+// e-mail: libusbdotnet@gmail.com
+//
+// This program is free software; you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+// for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with this program; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. or
+// visit www.gnu.org.
+//
+//
+namespace LibUsbDotNet.Main
+{
+ /// <summary> Availabled endpoint numbers/ids for writing.
+ /// </summary>
+ public enum WriteEndpointID : byte
+ {
+ /// <summary>
+ /// Endpoint 1
+ /// </summary>
+ Ep01 = 0x01,
+ /// <summary>
+ /// Endpoint 2
+ /// </summary>
+ Ep02 = 0x02,
+ /// <summary>
+ /// Endpoint 3
+ /// </summary>
+ Ep03 = 0x03,
+ /// <summary>
+ /// Endpoint 4
+ /// </summary>
+ Ep04 = 0x04,
+ /// <summary>
+ /// Endpoint 5
+ /// </summary>
+ Ep05 = 0x05,
+ /// <summary>
+ /// Endpoint 6
+ /// </summary>
+ Ep06 = 0x06,
+ /// <summary>
+ /// Endpoint 7
+ /// </summary>
+ Ep07 = 0x07,
+ /// <summary>
+ /// Endpoint 8
+ /// </summary>
+ Ep08 = 0x08,
+ /// <summary>
+ /// Endpoint 9
+ /// </summary>
+ Ep09 = 0x09,
+ /// <summary>
+ /// Endpoint 10
+ /// </summary>
+ Ep10 = 0x0A,
+ /// <summary>
+ /// Endpoint 11
+ /// </summary>
+ Ep11 = 0x0B,
+ /// <summary>
+ /// Endpoint 12
+ /// </summary>
+ Ep12 = 0x0C,
+ /// <summary>
+ /// Endpoint 13
+ /// </summary>
+ Ep13 = 0x0D,
+ /// <summary>
+ /// Endpoint 14
+ /// </summary>
+ Ep14 = 0x0E,
+ /// <summary>
+ /// Endpoint 15
+ /// </summary>
+ Ep15 = 0x0F,
+ }
+} \ No newline at end of file