Author: hbelusca
Date: Fri Dec 26 12:06:43 2014
New Revision: 65835
URL: 
http://svn.reactos.org/svn/reactos?rev=65835&view=rev
Log:
[WIN32K]: Anecdotal formatting/renaming changes before reusing this code in other parts of
wijn32k.
Modified:
    trunk/reactos/win32ss/user/ntuser/desktop.c
    trunk/reactos/win32ss/user/ntuser/input.c
    trunk/reactos/win32ss/user/ntuser/main.c
Modified: trunk/reactos/win32ss/user/ntuser/desktop.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/deskto…
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/desktop.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/desktop.c [iso-8859-1] Fri Dec 26 12:06:43 2014
@@ -726,7 +726,7 @@
        classes will be allocated from the shared heap */
     UserRegisterSystemClasses();
-    while(TRUE)
+    while (TRUE)
     {
         Ret = co_IntGetPeekMessage(&Msg, 0, 0, 0, PM_REMOVE, TRUE);
         if (Ret)
@@ -1892,9 +1892,9 @@
     TRACE("IntMapDesktopView called for desktop object 0x%p\n", pdesk);
     ppi = PsGetCurrentProcessWin32Process();
-    PrevLink = &ppi->HeapMappings.Next;
     /* Find out if another thread already mapped the desktop heap */
+    PrevLink    = &ppi->HeapMappings.Next;
     HeapMapping = *PrevLink;
     while (HeapMapping != NULL)
     {
@@ -1904,7 +1904,7 @@
             return STATUS_SUCCESS;
         }
-        PrevLink = &HeapMapping->Next;
+        PrevLink    = &HeapMapping->Next;
         HeapMapping = HeapMapping->Next;
     }
Modified: trunk/reactos/win32ss/user/ntuser/input.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/input.…
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/input.c   [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/input.c   [iso-8859-1] Fri Dec 26 12:06:43 2014
@@ -153,7 +153,7 @@
     StartTheTimers();
     UserLeave();
-    for(;;)
+    for (;;)
     {
         if (!ghMouseDevice)
         {
@@ -300,7 +300,7 @@
  * CreateSystemThreads
  *
  * Called form dedicated thread in CSRSS. RIT is started in context of this
- * thread because it needs valid Win32 process with TEB initialized
+ * thread because it needs valid Win32 process with TEB initialized.
  */
 DWORD NTAPI
 CreateSystemThreads(UINT Type)
Modified: trunk/reactos/win32ss/user/ntuser/main.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/main.c…
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/main.c    [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/main.c    [iso-8859-1] Fri Dec 26 12:06:43 2014
@@ -53,7 +53,7 @@
 static
 NTSTATUS
-CreateProcessInfo(PEPROCESS Process)
+UserCreateProcessInfo(PEPROCESS Process)
 {
     PPROCESSINFO ppiCurrent;
     NTSTATUS Status;
@@ -94,7 +94,7 @@
     TRACE_CH(UserProcess,"Allocated ppi 0x%p for PID:0x%lx\n", ppiCurrent,
HandleToUlong(Process->UniqueProcessId));
-    /* map the global heap into the process */
+    /* Map the global heap into the process */
     Offset.QuadPart = 0;
     Status = MmMapViewOfSection(GlobalUserHeapSection,
                                 PsGetCurrentProcess(),
@@ -133,14 +133,13 @@
     KeInitializeEvent(ppiCurrent->InputIdleEvent, NotificationEvent, FALSE);
-
-    /* map the gdi handle table to user land */
+    /* Map the gdi handle table to user land */
     Process->Peb->GdiSharedHandleTable = GDI_MapHandleTable(Process);
     Process->Peb->GdiDCAttributeList = GDI_BATCH_LIMIT;
     pParams = Process->Peb->ProcessParameters;
     ppiCurrent->peProcess = Process;
-    /* setup process flags */
+    /* Setup process flags */
     ppiCurrent->W32PF_flags = W32PF_THREADCONNECTED;
     if ( pParams &&
@@ -150,7 +149,7 @@
        ppiCurrent->W32PF_flags |= W32PF_SCREENSAVER;
     }
-    // Fixme check if this process is allowed.
+    // FIXME: check if this process is allowed.
     ppiCurrent->W32PF_flags |= W32PF_ALLOWFOREGROUNDACTIVATE; // Starting application
it will get toggled off.
     /* Create pools for GDI object attributes */
@@ -171,7 +170,7 @@
 static
 NTSTATUS
-DestroyProcessInfo(PEPROCESS Process)
+UserDestroyProcessInfo(PEPROCESS Process)
 {
     PPROCESSINFO ppiCurrent, *pppi;
@@ -288,11 +287,11 @@
     if (Create)
     {
-        Status = CreateProcessInfo(Process);
+        Status = UserCreateProcessInfo(Process);
     }
     else
     {
-        Status = DestroyProcessInfo(Process);
+        Status = UserDestroyProcessInfo(Process);
     }
     UserLeave();