# HG changeset patch
# User StephaneLenclud
# Date 1427049216 -3600
# Node ID 96d1dcf8ca706babacae0fbec755dd6088ac1010
# Parent a1724a285d496c508c0c00ee48b2bf41ff0a255b
Adding missing public keyword for some of our usage enumerations.
diff -r a1724a285d49 -r 96d1dcf8ca70 Hid/HidUsageTables.cs
--- a/Hid/HidUsageTables.cs Tue Mar 17 20:08:10 2015 +0100
+++ b/Hid/HidUsageTables.cs Sun Mar 22 19:33:36 2015 +0100
@@ -698,7 +698,7 @@
///
///
///
- enum GenericDesktop : ushort
+ public enum GenericDesktop : ushort
{
Null = 0x00,
Pointer = 0x01,
@@ -773,7 +773,7 @@
///
///
///
- enum SimulationControl : ushort
+ public enum SimulationControl : ushort
{
Null = 0x00,
FlightSimulationDevice = 0x01,
@@ -832,7 +832,7 @@
///
///
///
- enum GameControl : ushort
+ public enum GameControl : ushort
{
Null = 0x00,
GameController3D = 0x01,
@@ -868,7 +868,7 @@
///
///
///
- enum TelephonyDevice : ushort
+ public enum TelephonyDevice : ushort
{
Null = 0x00,
Phone = 0x01,
diff -r a1724a285d49 -r 96d1dcf8ca70 SharpLibHid.nuspec
--- a/SharpLibHid.nuspec Tue Mar 17 20:08:10 2015 +0100
+++ b/SharpLibHid.nuspec Sun Mar 22 19:33:36 2015 +0100
@@ -2,7 +2,7 @@
SharpLibHid
- 1.0.1
+ 1.0.2
C# HID Library
Stéphane Lenclud
Stéphane Lenclud
@@ -10,8 +10,11 @@
http://hg.slions.net/SharpLibHid
false
C# HID libray designed to handle raw input. Most useful to support IR remote control and gamepad inputs.
- v1.0.1
-Adding ThinkPad specific usages.
+ v1.0.2
+Adding missing public keyword for some of our Usage enumerations.
+
+v1.0.1
+Adding ThinkPad specific usages.
Adding support for optional event repeat.
Stéphane Lenclud