2009-02-22 10:43:35 +00:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Licensed under the MIT/X11 license.
|
|
|
|
|
* Copyright (c) 2006-2008 the OpenTK Team.
|
|
|
|
|
* This notice may not be removed from any source distribution.
|
|
|
|
|
* See license.txt for licensing detailed licensing details.
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform
|
|
|
|
|
{
|
2013-09-30 18:47:29 +00:00
|
|
|
|
/// <summary>Describes an OS window.</summary>
|
2009-02-22 10:43:35 +00:00
|
|
|
|
public interface IWindowInfo : IDisposable
|
|
|
|
|
{
|
2013-09-30 18:47:29 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves a platform-specific handle to this window.
|
|
|
|
|
/// </summary>
|
|
|
|
|
IntPtr Handle { get; }
|
2009-02-22 10:43:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|