2007-08-10 09:27:13 +00:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-07-23 00:15:18 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform
|
|
|
|
|
{
|
2007-08-05 13:42:31 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This interface supports OpenTK, and is not intended for use by OpenTK programs.
|
|
|
|
|
/// </summary>
|
2007-07-23 00:15:18 +00:00
|
|
|
|
public interface IWindowInfo
|
|
|
|
|
{
|
2007-08-05 13:42:31 +00:00
|
|
|
|
IntPtr Handle { get; }
|
|
|
|
|
IWindowInfo Parent { get; }
|
2007-07-23 00:15:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|