mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 15:36:04 +00:00
[NtUser]
- Cleanup status and update header. svn path=/trunk/; revision=65713
This commit is contained in:
parent
effa3a4d24
commit
5b624b75db
1 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS Win32k subsystem
|
* PROJECT: ReactOS Win32k subsystem
|
||||||
* PURPOSE: Messages
|
* PURPOSE: Messages
|
||||||
* FILE: subsystems/win32/win32k/ntuser/message.c
|
* FILE: win32ss/user/ntuser/message.c
|
||||||
* PROGRAMER: Casper S. Hornstrup (chorns@users.sourceforge.net)
|
* PROGRAMER: Casper S. Hornstrup (chorns@users.sourceforge.net)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1248,7 +1248,7 @@ co_IntSendMessageTimeoutSingle( HWND hWnd,
|
||||||
UINT uTimeout,
|
UINT uTimeout,
|
||||||
ULONG_PTR *uResult )
|
ULONG_PTR *uResult )
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status = STATUS_SUCCESS;
|
||||||
PWND Window = NULL;
|
PWND Window = NULL;
|
||||||
PMSGMEMORY MsgMemoryEntry;
|
PMSGMEMORY MsgMemoryEntry;
|
||||||
INT lParamBufferSize;
|
INT lParamBufferSize;
|
||||||
|
@ -1389,7 +1389,7 @@ co_IntSendMessageTimeoutSingle( HWND hWnd,
|
||||||
(uFlags & SMTO_NOTIMEOUTIFNOTHUNG) &&
|
(uFlags & SMTO_NOTIMEOUTIFNOTHUNG) &&
|
||||||
!MsqIsHung(ptiSendTo)); // FIXME: Set window hung and add to a list.
|
!MsqIsHung(ptiSendTo)); // FIXME: Set window hung and add to a list.
|
||||||
|
|
||||||
if (STATUS_TIMEOUT == Status)
|
if (Status == STATUS_TIMEOUT)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* MSDN says:
|
* MSDN says:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue