//
// StickyAttributes.cs
//
// Copyright (C) 2019 OpenTK
//
// This software may be modified and distributed under the terms
// of the MIT license. See the LICENSE file for details.
//
namespace OpenToolkit.GraphicsLibraryFramework
{
///
/// Attributes related to sticky keys and buttons.
///
///
///
public enum StickyAttributes
{
///
/// Specify whether keyboard input should be sticky or not.
///
StickyKeys = 0x00033002,
///
/// Specify whether mouse button input should be sticky or not.
///
StickyMouseButtons = 0x00033003
}
}