[WIN32K] Code formatting.
authorHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 24 Nov 2019 20:19:14 +0000 (21:19 +0100)
committerHermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
Sun, 24 Nov 2019 23:41:49 +0000 (00:41 +0100)
win32ss/gdi/eng/device.c
win32ss/gdi/eng/pdevobj.c
win32ss/user/ntuser/display.c

index 6d20e30..e5f30aa 100644 (file)
@@ -51,8 +51,8 @@ EngpPopulateDeviceModeList(
      * This is a REG_MULTI_SZ string */
     for (; *pwsz; pwsz += wcslen(pwsz) + 1)
     {
      * This is a REG_MULTI_SZ string */
     for (; *pwsz; pwsz += wcslen(pwsz) + 1)
     {
-        TRACE("trying driver: %ls\n", pwsz);
         /* Try to load the display driver */
         /* Try to load the display driver */
+        TRACE("Trying driver: %ls\n", pwsz);
         pldev = EngLoadImageEx(pwsz, LDEV_DEVICE_DISPLAY);
         if (!pldev)
         {
         pldev = EngLoadImageEx(pwsz, LDEV_DEVICE_DISPLAY);
         if (!pldev)
         {
@@ -186,14 +186,14 @@ EngpRegisterGraphicsDevice(
         return NULL;
     }
 
         return NULL;
     }
 
-    /* Try to open the driver */
+    /* Try to open and enable the device */
     Status = IoGetDeviceObjectPointer(pustrDeviceName,
                                       FILE_READ_DATA | FILE_WRITE_DATA,
                                       &pFileObject,
                                       &pDeviceObject);
     if (!NT_SUCCESS(Status))
     {
     Status = IoGetDeviceObjectPointer(pustrDeviceName,
                                       FILE_READ_DATA | FILE_WRITE_DATA,
                                       &pFileObject,
                                       &pDeviceObject);
     if (!NT_SUCCESS(Status))
     {
-        ERR("Could not open driver %wZ, 0x%lx\n", pustrDeviceName, Status);
+        ERR("Could not open device %wZ, 0x%lx\n", pustrDeviceName, Status);
         ExFreePoolWithTag(pGraphicsDevice, GDITAG_GDEVICE);
         return NULL;
     }
         ExFreePoolWithTag(pGraphicsDevice, GDITAG_GDEVICE);
         return NULL;
     }
@@ -225,13 +225,13 @@ EngpRegisterGraphicsDevice(
         return NULL;
     }
 
         return NULL;
     }
 
-    /* Copy display driver names */
+    /* Copy the display driver names */
     pGraphicsDevice->pDiplayDrivers = pwsz;
     RtlCopyMemory(pGraphicsDevice->pDiplayDrivers,
                   pustrDiplayDrivers->Buffer,
                   pustrDiplayDrivers->Length);
 
     pGraphicsDevice->pDiplayDrivers = pwsz;
     RtlCopyMemory(pGraphicsDevice->pDiplayDrivers,
                   pustrDiplayDrivers->Buffer,
                   pustrDiplayDrivers->Length);
 
-    /* Copy description */
+    /* Copy the description */
     pGraphicsDevice->pwszDescription = pwsz + pustrDiplayDrivers->Length / sizeof(WCHAR);
     RtlCopyMemory(pGraphicsDevice->pwszDescription,
                   pustrDescription->Buffer,
     pGraphicsDevice->pwszDescription = pwsz + pustrDiplayDrivers->Length / sizeof(WCHAR);
     RtlCopyMemory(pGraphicsDevice->pwszDescription,
                   pustrDescription->Buffer,
@@ -265,7 +265,7 @@ EngpRegisterGraphicsDevice(
     if (!gpGraphicsDeviceFirst)
         gpGraphicsDeviceFirst = pGraphicsDevice;
 
     if (!gpGraphicsDeviceFirst)
         gpGraphicsDeviceFirst = pGraphicsDevice;
 
-    /* Increment device number */
+    /* Increment the device number */
     giDevNum++;
 
     /* Unlock loader */
     giDevNum++;
 
     /* Unlock loader */
@@ -275,7 +275,6 @@ EngpRegisterGraphicsDevice(
     return pGraphicsDevice;
 }
 
     return pGraphicsDevice;
 }
 
-
 PGRAPHICS_DEVICE
 NTAPI
 EngpFindGraphicsDevice(
 PGRAPHICS_DEVICE
 NTAPI
 EngpFindGraphicsDevice(
@@ -321,7 +320,6 @@ EngpFindGraphicsDevice(
     return pGraphicsDevice;
 }
 
     return pGraphicsDevice;
 }
 
-
 static
 NTSTATUS
 EngpFileIoRequest(
 static
 NTSTATUS
 EngpFileIoRequest(
index 19c2fee..450d37f 100644 (file)
@@ -90,15 +90,15 @@ PDEVOBJ_vDeletePDEV(
 
 VOID
 NTAPI
 
 VOID
 NTAPI
-PDEVOBJ_vRelease(PPDEVOBJ ppdev)
+PDEVOBJ_vRelease(
+    _Inout_ PPDEVOBJ ppdev)
 {
     /* Lock loader */
     EngAcquireSemaphore(ghsemPDEV);
 
     /* Decrease reference count */
 {
     /* Lock loader */
     EngAcquireSemaphore(ghsemPDEV);
 
     /* Decrease reference count */
-    --ppdev->cPdevRefs;
-
-    ASSERT(ppdev->cPdevRefs >= 0) ;
+    InterlockedDecrement(&ppdev->cPdevRefs);
+    ASSERT(ppdev->cPdevRefs >= 0);
 
     /* Check if references are left */
     if (ppdev->cPdevRefs == 0)
 
     /* Check if references are left */
     if (ppdev->cPdevRefs == 0)
@@ -112,7 +112,7 @@ PDEVOBJ_vRelease(PPDEVOBJ ppdev)
         }
 
         /* Do we have a palette? */
         }
 
         /* Do we have a palette? */
-        if(ppdev->ppalSurf)
+        if (ppdev->ppalSurf)
         {
             PALETTE_ShareUnlockPalette(ppdev->ppalSurf);
         }
         {
             PALETTE_ShareUnlockPalette(ppdev->ppalSurf);
         }
@@ -125,20 +125,22 @@ PDEVOBJ_vRelease(PPDEVOBJ ppdev)
         }
 
         /* Remove it from list */
         }
 
         /* Remove it from list */
-        if( ppdev == gppdevList )
-            gppdevList = ppdev->ppdevNext ;
+        if (ppdev == gppdevList)
+        {
+            gppdevList = ppdev->ppdevNext;
+        }
         else
         {
             PPDEVOBJ ppdevCurrent = gppdevList;
         else
         {
             PPDEVOBJ ppdevCurrent = gppdevList;
-            BOOL found = FALSE ;
+            BOOL found = FALSE;
             while (!found && ppdevCurrent->ppdevNext)
             {
                 if (ppdevCurrent->ppdevNext == ppdev)
                     found = TRUE;
                 else
             while (!found && ppdevCurrent->ppdevNext)
             {
                 if (ppdevCurrent->ppdevNext == ppdev)
                     found = TRUE;
                 else
-                    ppdevCurrent = ppdevCurrent->ppdevNext ;
+                    ppdevCurrent = ppdevCurrent->ppdevNext;
             }
             }
-            if(found)
+            if (found)
                 ppdevCurrent->ppdevNext = ppdev->ppdevNext;
         }
 
                 ppdevCurrent->ppdevNext = ppdev->ppdevNext;
         }
 
@@ -152,7 +154,6 @@ PDEVOBJ_vRelease(PPDEVOBJ ppdev)
 
     /* Unlock loader */
     EngReleaseSemaphore(ghsemPDEV);
 
     /* Unlock loader */
     EngReleaseSemaphore(ghsemPDEV);
-
 }
 
 BOOL
 }
 
 BOOL
@@ -320,7 +321,7 @@ PDEVOBJ_pdmMatchDevMode(
 
         /* Compare asked DEVMODE fields
          * Only compare those that are valid in both DEVMODE structs */
 
         /* Compare asked DEVMODE fields
          * Only compare those that are valid in both DEVMODE structs */
-        dwFields = pdmCurrent->dmFields & pdm->dmFields ;
+        dwFields = pdmCurrent->dmFields & pdm->dmFields;
 
         /* For now, we only need those */
         if ((dwFields & DM_BITSPERPEL) &&
 
         /* For now, we only need those */
         if ((dwFields & DM_BITSPERPEL) &&
@@ -348,6 +349,7 @@ EngpCreatePDEV(
 {
     PGRAPHICS_DEVICE pGraphicsDevice;
     PPDEVOBJ ppdev;
 {
     PGRAPHICS_DEVICE pGraphicsDevice;
     PPDEVOBJ ppdev;
+
     DPRINT("EngpCreatePDEV(%wZ, %p)\n", pustrDeviceName, pdm);
 
     /* Try to find the GRAPHICS_DEVICE */
     DPRINT("EngpCreatePDEV(%wZ, %p)\n", pustrDeviceName, pdm);
 
     /* Try to find the GRAPHICS_DEVICE */
@@ -407,7 +409,7 @@ EngpCreatePDEV(
     ppdev->hSpooler = ppdev->pGraphicsDevice->DeviceObject;
 
     // Should we change the ative mode of pGraphicsDevice ?
     ppdev->hSpooler = ppdev->pGraphicsDevice->DeviceObject;
 
     // Should we change the ative mode of pGraphicsDevice ?
-    ppdev->pdmwDev = PDEVOBJ_pdmMatchDevMode(ppdev, pdm) ;
+    ppdev->pdmwDev = PDEVOBJ_pdmMatchDevMode(ppdev, pdm);
 
     /* FIXME! */
     ppdev->flFlags = PDEV_DISPLAY;
 
     /* FIXME! */
     ppdev->flFlags = PDEV_DISPLAY;
@@ -561,7 +563,7 @@ PDEVOBJ_bSwitchMode(
     PDEVOBJ_vRelease(ppdevTmp);
 
     /* Update primary display capabilities */
     PDEVOBJ_vRelease(ppdevTmp);
 
     /* Update primary display capabilities */
-    if(ppdev == gppdevPrimary)
+    if (ppdev == gppdevPrimary)
     {
         PDEVOBJ_vGetDeviceCaps(ppdev, &GdiHandleTable->DevCaps);
     }
     {
         PDEVOBJ_vGetDeviceCaps(ppdev, &GdiHandleTable->DevCaps);
     }
index 3f2b99c..cebaf8c 100644 (file)
@@ -557,7 +557,7 @@ UserEnumRegistryDisplaySettings(
         ZwClose(hkey);
         return STATUS_SUCCESS;
     }
         ZwClose(hkey);
         return STATUS_SUCCESS;
     }
-    return Status ;
+    return Status;
 }
 
 NTSTATUS
 }
 
 NTSTATUS
@@ -674,6 +674,7 @@ NtUserEnumDisplaySettings(
 
     return Status;
 }
 
     return Status;
 }
+
 VOID
 UserUpdateFullscreen(
     DWORD flags)
 VOID
 UserUpdateFullscreen(
     DWORD flags)
@@ -1012,4 +1013,3 @@ NtUserChangeDisplaySettings(
 
     return lRet;
 }
 
     return lRet;
 }
-