Opentk/Source/Framework/WindowsPlatform.cs
the_fiddler cd32a6db54
2006-11-02 21:40:36 +00:00

17 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using OpenTK.Platform.Windows;
namespace OpenTK
{
class WindowsPlatform : PlatformSpecific
{
public override bool IsIdle()
{
WinApi.Message msg;
return !WinApi.PeekMessage(out msg, IntPtr.Zero, 0, 0, 0);
}
}
}