//
// ConnectedState.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
{
///
/// Specifies connected state of devices.
///
public enum ConnectedState
{
///
/// Indicates that a device is connected.
///
Connected = 0x00040001,
///
/// Indicates that a device is disconnected.
///
Disconnected = 0x00040002
}
}