[WIN32SS:NTUSER] Few formatting fixes.

This commit is contained in:
Hermès Bélusca-Maïto 2021-10-19 23:02:02 +02:00
parent be223b9de7
commit 6b7b0f0c7e
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 27 additions and 27 deletions

View file

@ -1209,8 +1209,7 @@ IntValidateDesktopHandle(
{
NTSTATUS Status;
Status = ObReferenceObjectByHandle(
Desktop,
Status = ObReferenceObjectByHandle(Desktop,
DesiredAccess,
ExDesktopObjectType,
AccessMode,
@ -1319,7 +1318,7 @@ IntSetFocusMessageQueue(PUSER_MESSAGE_QUEUE NewQueue)
{
gpqForeground = NULL;
ERR("ptiLastInput is CLEARED!!\n");
ptiLastInput = NULL; // ReactOS hacks,,,, should check for process death.
ptiLastInput = NULL; // ReactOS hacks... should check for process death.
}
}
@ -1572,10 +1571,8 @@ UserRedrawDesktop(VOID)
IntInvalidateWindows(Window,
Rgn,
RDW_FRAME |
RDW_ERASE |
RDW_INVALIDATE |
RDW_ALLCHILDREN);
RDW_FRAME | RDW_ERASE |
RDW_INVALIDATE | RDW_ALLCHILDREN);
REGION_Delete(Rgn);
}
@ -2448,7 +2445,7 @@ IntCreateDesktop(
pdesk->spwndMessage = pWnd;
pWnd->fnid = FNID_MESSAGEWND;
/* Now,,,
/* Now...
if !(WinStaObject->Flags & WSF_NOIO) is (not set) for desktop input output mode (see wiki)
Create Tooltip. Saved in DesktopObject->spwndTooltip.
Tooltip dwExStyle: WS_EX_TOOLWINDOW|WS_EX_TOPMOST
@ -2738,9 +2735,12 @@ BOOL APIENTRY
NtUserPaintDesktop(HDC hDC)
{
BOOL Ret;
UserEnterExclusive();
TRACE("Enter NtUserPaintDesktop\n");
Ret = IntPaintDesktop(hDC);
TRACE("Leave NtUserPaintDesktop, ret=%i\n", Ret);
UserLeave();
return Ret;

View file

@ -739,7 +739,7 @@ IntGetWindowProc(PWND pWnd,
PCLS Class;
WNDPROC gcpd, Ret = 0;
ASSERT(UserIsEnteredExclusive() == TRUE);
ASSERT(UserIsEnteredExclusive());
Class = pWnd->pcls;

View file

@ -156,7 +156,7 @@ RtlGetExpWinVer( HMODULE hModule )
DWORD dwMinorVersion = 10;
PIMAGE_NT_HEADERS pinth;
if ( hModule && !LOWORD( ((ULONG_PTR)hModule) ))
if (hModule && !LOWORD((ULONG_PTR)hModule))
{
pinth = RtlImageNtHeader(hModule);
if (pinth)