Disabled GetDeviceName until the correct cross-platform API can be determined.

This commit is contained in:
the_fiddler 2010-12-03 12:39:42 +00:00
parent 26075f0243
commit 14d96ccfc9

View file

@ -74,6 +74,9 @@ namespace OpenTK.Input
} }
} }
#if false
// Disabled until a correct, cross-platform API can be defined.
/// <summary> /// <summary>
/// Retrieves the device name for the keyboard device. /// Retrieves the device name for the keyboard device.
/// </summary> /// </summary>
@ -91,6 +94,7 @@ namespace OpenTK.Input
return driver.GetDeviceName(index); return driver.GetDeviceName(index);
} }
} }
#endif
#endregion #endregion
} }