Check for messages sent by other threads

svn path=/trunk/; revision=4665
This commit is contained in:
Gé van Geldorp 2003-05-10 21:47:04 +00:00
parent 780c1a105d
commit 8d4eee3aab

View file

@ -1,4 +1,4 @@
/* $Id: message.c,v 1.13 2003/05/04 15:42:21 gvg Exp $
/* $Id: message.c,v 1.14 2003/05/10 21:47:04 gvg Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -268,7 +268,8 @@ NtUserPeekMessage(LPMSG lpMsg,
/* FIXME: The only flag we process is PM_REMOVE - processing of others must still be implemented */
RemoveMessages = wRemoveMsg & PM_REMOVE;
/* FIXME: Dispatch sent messages here. */
/* Dispatch sent messages here. */
while (MsqDispatchOneSentMessage(ThreadQueue));
/* Now look for a quit message. */
/* FIXME: WINE checks the message number filter here. */
@ -312,11 +313,12 @@ NtUserPeekMessage(LPMSG lpMsg,
return(TRUE);
}
/* FIXME: Check for sent messages again. */
/* Check for sent messages again. */
while (MsqDispatchOneSentMessage(ThreadQueue));
/* FIXME: Check for paint messages. */
return((BOOLEAN)(-1));
return FALSE;
}
BOOL STDCALL