mirror of
https://github.com/reactos/reactos.git
synced 2025-07-01 10:31:25 +00:00
- [Win32k] Remove debug prints from classes.
svn path=/trunk/; revision=44333
This commit is contained in:
parent
78365fd832
commit
c4e84dd682
1 changed files with 10 additions and 10 deletions
|
@ -628,7 +628,7 @@ IntDereferenceClass(IN OUT PCLS Class,
|
||||||
{
|
{
|
||||||
ASSERT(Class->pclsBase == Class);
|
ASSERT(Class->pclsBase == Class);
|
||||||
|
|
||||||
DPRINT1("IntDereferenceClass 0x%x\n", Class);
|
DPRINT("IntDereferenceClass 0x%x\n", Class);
|
||||||
/* check if there are clones of the class on other desktops,
|
/* check if there are clones of the class on other desktops,
|
||||||
link the first clone in if possible. If there are no clones
|
link the first clone in if possible. If there are no clones
|
||||||
then leave the class on the desktop heap. It will get moved
|
then leave the class on the desktop heap. It will get moved
|
||||||
|
@ -666,7 +666,7 @@ IntDereferenceClass(IN OUT PCLS Class,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DPRINT1("IntDereferenceClass1 0x%x\n", Class);
|
DPRINT("IntDereferenceClass1 0x%x\n", Class);
|
||||||
|
|
||||||
/* locate the cloned class and unlink it */
|
/* locate the cloned class and unlink it */
|
||||||
PrevLink = &BaseClass->pclsClone;
|
PrevLink = &BaseClass->pclsClone;
|
||||||
|
@ -1154,7 +1154,7 @@ IntGetClassAtom(IN PUNICODE_STRING ClassName,
|
||||||
&pi->pclsPrivateList,
|
&pi->pclsPrivateList,
|
||||||
Link);
|
Link);
|
||||||
if (Class != NULL)
|
if (Class != NULL)
|
||||||
{ DPRINT1("Step 1: 0x%x\n",Class );
|
{ DPRINT("Step 1: 0x%x\n",Class );
|
||||||
goto FoundClass;
|
goto FoundClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1165,7 +1165,7 @@ IntGetClassAtom(IN PUNICODE_STRING ClassName,
|
||||||
&pi->pclsPublicList,
|
&pi->pclsPublicList,
|
||||||
Link);
|
Link);
|
||||||
if (Class != NULL)
|
if (Class != NULL)
|
||||||
{ DPRINT1("Step 2: 0x%x 0x%x\n",Class, Class->hModule);
|
{ DPRINT("Step 2: 0x%x 0x%x\n",Class, Class->hModule);
|
||||||
goto FoundClass;
|
goto FoundClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1175,7 +1175,7 @@ IntGetClassAtom(IN PUNICODE_STRING ClassName,
|
||||||
&pi->pclsPrivateList,
|
&pi->pclsPrivateList,
|
||||||
Link);
|
Link);
|
||||||
if (Class != NULL)
|
if (Class != NULL)
|
||||||
{ DPRINT1("Step 3: 0x%x\n",Class );
|
{ DPRINT("Step 3: 0x%x\n",Class );
|
||||||
goto FoundClass;
|
goto FoundClass;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1188,7 +1188,7 @@ IntGetClassAtom(IN PUNICODE_STRING ClassName,
|
||||||
{
|
{
|
||||||
SetLastWin32Error(ERROR_CLASS_DOES_NOT_EXIST);
|
SetLastWin32Error(ERROR_CLASS_DOES_NOT_EXIST);
|
||||||
return (RTL_ATOM)0;
|
return (RTL_ATOM)0;
|
||||||
}else{DPRINT1("Step 4: 0x%x\n",Class );}
|
}else{DPRINT("Step 4: 0x%x\n",Class );}
|
||||||
|
|
||||||
FoundClass:
|
FoundClass:
|
||||||
*BaseClass = Class;
|
*BaseClass = Class;
|
||||||
|
@ -1294,7 +1294,7 @@ UserUnregisterClass(IN PUNICODE_STRING ClassName,
|
||||||
|
|
||||||
pi = GetW32ProcessInfo();
|
pi = GetW32ProcessInfo();
|
||||||
|
|
||||||
DPRINT1("UserUnregisterClass(%wZ, 0x%x)\n", ClassName, hInstance);
|
DPRINT("UserUnregisterClass(%wZ, 0x%x)\n", ClassName, hInstance);
|
||||||
|
|
||||||
/* NOTE: Accessing the buffer in ClassName may raise an exception! */
|
/* NOTE: Accessing the buffer in ClassName may raise an exception! */
|
||||||
ClassAtom = IntGetClassAtom(ClassName,
|
ClassAtom = IntGetClassAtom(ClassName,
|
||||||
|
@ -1326,8 +1326,8 @@ UserUnregisterClass(IN PUNICODE_STRING ClassName,
|
||||||
|
|
||||||
if (NT_SUCCESS(IntDeregisterClassAtom(Class->atomClassName)))
|
if (NT_SUCCESS(IntDeregisterClassAtom(Class->atomClassName)))
|
||||||
{
|
{
|
||||||
DPRINT1("Class 0x%x\n", Class);
|
DPRINT("Class 0x%x\n", Class);
|
||||||
DPRINT1("UserUnregisterClass: Good Exit!\n");
|
DPRINT("UserUnregisterClass: Good Exit!\n");
|
||||||
/* finally free the resources */
|
/* finally free the resources */
|
||||||
IntDestroyClass(Class);
|
IntDestroyClass(Class);
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -2402,7 +2402,7 @@ InvalidParameter:
|
||||||
|
|
||||||
if (Ret)
|
if (Ret)
|
||||||
{
|
{
|
||||||
DPRINT1("GetClassInfo(%wZ, 0x%x)\n", ClassName, hInstance);
|
DPRINT("GetClassInfo(%wZ, 0x%x)\n", ClassName, hInstance);
|
||||||
ClassAtom = IntGetClassAtom( &SafeClassName,
|
ClassAtom = IntGetClassAtom( &SafeClassName,
|
||||||
hInstance,
|
hInstance,
|
||||||
ppi,
|
ppi,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue