Author: gadamopoulos
Date: Thu Aug 18 20:41:16 2011
New Revision: 53307
URL:
http://svn.reactos.org/svn/reactos?rev=53307&view=rev
Log:
[desk]
- Use DPRINT1 instead of DbgPrint
Modified:
branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c
Modified: branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/ThemesSupport/dll/cpl…
==============================================================================
--- branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c [iso-8859-1] (original)
+++ branches/GSoC_2011/ThemesSupport/dll/cpl/desk/devsett.c [iso-8859-1] Thu Aug 18
20:41:16 2011
@@ -181,19 +181,19 @@
CM_LOCATE_DEVNODE_NORMAL);
if (cr == CR_SUCCESS)
{
- DbgPrint("Success1\n");
+ DPRINT1("Success1\n");
cr = CM_Get_Device_ID_Size(&BufLen,
DevInst,
0);
if (cr == CR_SUCCESS)
{
- DbgPrint("Success2\n");
+ DPRINT1("Success2\n");
lpDevInstId = LocalAlloc(LMEM_FIXED,
(BufLen + 1) * sizeof(WCHAR));
if (lpDevInstId != NULL)
{
- DbgPrint("Success3\n");
+ DPRINT1("Success3\n");
cr = CM_Get_Device_IDW(DevInst,
lpDevInstId,
BufLen,
@@ -204,7 +204,7 @@
LocalFree((HLOCAL)lpDevInstId);
lpDevInstId = NULL;
}
- DbgPrint("instance id: %ws\n", lpDevInstId);
+ DPRINT1("instance id: %ws\n", lpDevInstId);
}
}
}