remove some more unnecessary debug output

svn path=/trunk/; revision=50045
This commit is contained in:
Giannis Adamopoulos 2010-12-16 21:42:28 +00:00
parent 5a3dff4bd2
commit f21a470fe6
7 changed files with 13 additions and 13 deletions

View file

@ -104,7 +104,7 @@ BOOL PrepareService(LPCTSTR ServiceName)
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 @@ int _tmain (int argc, LPTSTR argv [])
NrOfServices = LoadServiceCategory(argv[2]);
DPRINT1("NrOfServices: %lu\n", NrOfServices);
DPRINT("NrOfServices: %lu\n", NrOfServices);
if (0 == NrOfServices)
return 0;
@ -240,7 +240,7 @@ int _tmain (int argc, LPTSTR argv [])
/* 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;

View file

@ -1005,7 +1005,7 @@ static HICON CURSORICON_ExtCopy(HICON hIcon, UINT nType,
&& (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

View file

@ -124,7 +124,7 @@ EngpRegisterGraphicsDevice(
* 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 @@ EngpRegisterGraphicsDevice(
{
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 @@ EngpRegisterGraphicsDevice(
/* 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;
}

View file

@ -117,7 +117,7 @@ PDEVOBJ_bEnablePDEV(
{
PFN_DrvEnablePDEV pfnEnablePDEV;
DPRINT1("PDEVOBJ_bEnablePDEV()\n");
DPRINT("PDEVOBJ_bEnablePDEV()\n");
/* Get the DrvEnablePDEV function */
pfnEnablePDEV = ppdev->pldev->pfn.EnablePDEV;
@ -146,7 +146,7 @@ PDEVOBJ_bEnablePDEV(
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 @@ EngpCreatePDEV(
{
/* ... 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 */

View file

@ -572,7 +572,7 @@ BOOL FASTCALL IntDesktopUpdatePerUserSettings(BOOL bEnable)
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;

View file

@ -551,7 +551,7 @@ NtUserEnumDisplaySettings(
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)

View file

@ -41,7 +41,7 @@ IntCreatePrimarySurface()
/* 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 */