Axiom.RenderSystems.DirectX9.Win32MessageHandling.MessagePump C# (CSharp) Method

MessagePump() static public method

static public MessagePump ( ) : void
return void
		static public void MessagePump()
		{
			Msg msg;

			// pump those events!
			while ( !( PeekMessage( out msg, IntPtr.Zero, 0, 0, PM_REMOVE ) == 0 ) )
			{
				TranslateMessage( ref msg );
				DispatchMessage( ref msg );
			}
		}