Author: gadamopoulos
Date: Thu Dec 16 21:42:28 2010
New Revision: 50045
URL:
http://svn.reactos.org/svn/reactos?rev=50045&view=rev
Log:
remove some more unnecessary debug output
Modified:
trunk/reactos/base/services/svchost/svchost.c
trunk/reactos/dll/win32/user32/windows/cursoricon.c
trunk/reactos/subsystems/win32/win32k/eng/device.c
trunk/reactos/subsystems/win32/win32k/eng/pdevobj.c
trunk/reactos/subsystems/win32/win32k/ntuser/desktop.c
trunk/reactos/subsystems/win32/win32k/ntuser/display.c
trunk/reactos/subsystems/win32/win32k/objects/device.c
Modified: trunk/reactos/base/services/svchost/svchost.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/services/svchost/svch…
==============================================================================
--- trunk/reactos/base/services/svchost/svchost.c [iso-8859-1] (original)
+++ trunk/reactos/base/services/svchost/svchost.c [iso-8859-1] Thu Dec 16 21:42:28 2010
@@ -104,7 +104,7 @@
HeapFree(GetProcessHeap(), 0, Buffer);
/* Load the service dll */
- DPRINT1("Trying to load dll\n");
+ DPRINT("Trying to load dll\n");
hServiceDll = LoadLibrary(DllPath);
if (NULL == hServiceDll)
@@ -226,7 +226,7 @@
NrOfServices = LoadServiceCategory(argv[2]);
- DPRINT1("NrOfServices: %lu\n", NrOfServices);
+ DPRINT("NrOfServices: %lu\n", NrOfServices);
if (0 == NrOfServices)
return 0;
@@ -240,7 +240,7 @@
/* Fill the service table */
for (i = 0; i < NrOfServices; ++i)
{
- DPRINT1("Loading service: %s\n", Service->Name);
+ DPRINT("Loading service: %s\n", Service->Name);
ServiceTable[i].lpServiceName = Service->Name;
ServiceTable[i].lpServiceProc = Service->ServiceMainFunc;
Service = Service->Next;
Modified: trunk/reactos/dll/win32/user32/windows/cursoricon.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/user32/windows/c…
==============================================================================
--- trunk/reactos/dll/win32/user32/windows/cursoricon.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/user32/windows/cursoricon.c [iso-8859-1] Thu Dec 16 21:42:28
2010
@@ -1005,7 +1005,7 @@
&& (iDesiredCX > 0 || iDesiredCY > 0))
|| nFlags & LR_MONOCHROME)
{
- FIXME("Copying from resource isn't implemented yet\n");
+ TRACE("Copying from resource isn't implemented yet\n");
hNew = CopyIcon(hIcon);
#if 0
Modified: trunk/reactos/subsystems/win32/win32k/eng/device.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/en…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/eng/device.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/eng/device.c [iso-8859-1] Thu Dec 16 21:42:28
2010
@@ -124,7 +124,7 @@
* This is a REG_MULTI_SZ string */
for (; *pwsz; pwsz += wcslen(pwsz) + 1)
{
- DPRINT1("trying driver: %ls\n", pwsz);
+ DPRINT("trying driver: %ls\n", pwsz);
/* Try to load the display driver */
pldev = EngLoadImageEx(pwsz, LDEV_DEVICE_DISPLAY);
if (!pldev)
@@ -197,7 +197,7 @@
{
pGraphicsDevice->iDefaultMode = i;
pGraphicsDevice->iCurrentMode = i;
- DPRINT1("Found default entry: %ld '%ls'\n", i,
pdm->dmDeviceName);
+ DPRINT("Found default entry: %ld '%ls'\n", i,
pdm->dmDeviceName);
}
/* Initialize the entry */
@@ -221,7 +221,7 @@
/* Unlock loader */
EngReleaseSemaphore(ghsemGraphicsDeviceList);
- DPRINT1("Prepared %ld modes for %ls\n", cModes,
pGraphicsDevice->pwszDescription);
+ DPRINT("Prepared %ld modes for %ls\n", cModes,
pGraphicsDevice->pwszDescription);
return pGraphicsDevice;
}
Modified: trunk/reactos/subsystems/win32/win32k/eng/pdevobj.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/en…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/eng/pdevobj.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/eng/pdevobj.c [iso-8859-1] Thu Dec 16 21:42:28
2010
@@ -117,7 +117,7 @@
{
PFN_DrvEnablePDEV pfnEnablePDEV;
- DPRINT1("PDEVOBJ_bEnablePDEV()\n");
+ DPRINT("PDEVOBJ_bEnablePDEV()\n");
/* Get the DrvEnablePDEV function */
pfnEnablePDEV = ppdev->pldev->pfn.EnablePDEV;
@@ -146,7 +146,7 @@
GDIOBJ_SetOwnership(ppdev->devinfo.hpalDefault, NULL);
ppdev->ppalSurf = PALETTE_ShareLockPalette(ppdev->devinfo.hpalDefault);
- DPRINT1("PDEVOBJ_bEnablePDEV - dhpdev = %p\n", ppdev->dhpdev);
+ DPRINT("PDEVOBJ_bEnablePDEV - dhpdev = %p\n", ppdev->dhpdev);
return TRUE;
}
@@ -266,7 +266,7 @@
{
/* ... use the device's default one */
pdm = pGraphicsDevice->pDevModeList[pGraphicsDevice->iDefaultMode].pdm;
- DPRINT1("Using iDefaultMode = %ld\n",
pGraphicsDevice->iDefaultMode);
+ DPRINT("Using iDefaultMode = %ld\n",
pGraphicsDevice->iDefaultMode);
}
/* Try to get a diplay driver */
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/desktop.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/desktop.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/desktop.c [iso-8859-1] Thu Dec 16
21:42:28 2010
@@ -572,7 +572,7 @@
QueryTable, NULL, NULL);
if (!NT_SUCCESS(Status))
{
- DPRINT1("RtlQueryRegistryValues failed for PaintDesktopVersion
(%x)\n",
+ DPRINT("RtlQueryRegistryValues failed for PaintDesktopVersion
(%x)\n",
Status);
g_PaintDesktopVersion = FALSE;
return FALSE;
Modified: trunk/reactos/subsystems/win32/win32k/ntuser/display.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/nt…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/display.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/display.c [iso-8859-1] Thu Dec 16
21:42:28 2010
@@ -551,7 +551,7 @@
ULONG cbSize, cbExtra;
DEVMODEW dmReg, *pdm;
- DPRINT1("Enter NtUserEnumDisplaySettings(%ls, %ld)\n",
+ DPRINT("Enter NtUserEnumDisplaySettings(%ls, %ld)\n",
pustrDevice ? pustrDevice->Buffer : 0, iModeNum);
if (pustrDevice)
Modified: trunk/reactos/subsystems/win32/win32k/objects/device.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ob…
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/objects/device.c [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/objects/device.c [iso-8859-1] Thu Dec 16
21:42:28 2010
@@ -41,7 +41,7 @@
/* attach monitor */
IntAttachMonitor(gppdevPrimary, 0);
- DPRINT1("IntCreatePrimarySurface, pPrimarySurface=%p,
pPrimarySurface->pSurface = %p\n",
+ DPRINT("IntCreatePrimarySurface, pPrimarySurface=%p,
pPrimarySurface->pSurface = %p\n",
pPrimarySurface, pPrimarySurface->pSurface);
/* Create surface */