- Add tracing to class.c

- Slightly change header to match the new style

svn path=/trunk/; revision=23531
This commit is contained in:
Aleksey Bragin
2006-08-09 10:00:04 +00:00
parent 6007fa59ce
commit f253f896e7
+66 -9
View File
@@ -1,8 +1,8 @@
/* $Id$
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
* FILE: lib/user32/windows/class.c
* COPYRIGHT: GPL - See COPYING in the top level directory
* FILE: dll/win32/user32/windows/class.c
* PURPOSE: Window classes
* PROGRAMMER: Casper S. Hornstrup ([email protected])
* UPDATE HISTORY:
@@ -28,6 +28,11 @@ GetClassInfoExA(
UNICODE_STRING ClassName = {0};
BOOL Ret;
TRACE("%p class/atom: %s/%04x %p\n", hinst,
IS_ATOM(lpszClass) ? NULL : lpszClass,
IS_ATOM(lpszClass) ? lpszClass : 0,
lpwcx);
if (lpszClass == NULL)
{
SetLastError(ERROR_INVALID_PARAMETER);
@@ -80,6 +85,11 @@ GetClassInfoExW(
{
UNICODE_STRING ClassName = {0};
TRACE("%p class/atom: %S/%04x %p\n", hinst,
IS_ATOM(lpszClass) ? NULL : lpszClass,
IS_ATOM(lpszClass) ? lpszClass : 0,
lpwcx);
if (lpszClass == NULL)
{
SetLastError(ERROR_INVALID_PARAMETER);
@@ -182,6 +192,8 @@ GetClassInfoW(
DWORD STDCALL
GetClassLongA(HWND hWnd, int nIndex)
{
TRACE("%p %d\n", hWnd, nIndex);
switch (nIndex)
{
case GCL_HBRBACKGROUND:
@@ -213,6 +225,8 @@ GetClassLongA(HWND hWnd, int nIndex)
DWORD STDCALL
GetClassLongW ( HWND hWnd, int nIndex )
{
TRACE("%p %d\n", hWnd, nIndex);
switch (nIndex)
{
case GCL_HBRBACKGROUND:
@@ -249,13 +263,21 @@ GetClassNameA(
int nMaxCount)
{
ANSI_STRING ClassName;
int Result;
ClassName.MaximumLength = nMaxCount;
ClassName.Buffer = lpClassName;
return NtUserGetClassName(hWnd,
(PUNICODE_STRING)&ClassName,
TRUE);
Result = NtUserGetClassName(hWnd,
(PUNICODE_STRING)&ClassName,
TRUE);
TRACE("%p class/atom: %s/%04x %x\n", hWnd,
IS_ATOM(lpClassName) ? NULL : lpClassName,
IS_ATOM(lpClassName) ? lpClassName : 0,
nMaxCount);
return Result;
}
@@ -270,13 +292,21 @@ GetClassNameW(
int nMaxCount)
{
UNICODE_STRING ClassName;
int Result;
ClassName.MaximumLength = nMaxCount;
ClassName.Buffer = lpClassName;
return NtUserGetClassName(hWnd,
&ClassName,
FALSE);
Result = NtUserGetClassName(hWnd,
&ClassName,
FALSE);
TRACE("%p class/atom: %S/%04x %x\n", hWnd,
IS_ATOM(lpClassName) ? NULL : lpClassName,
IS_ATOM(lpClassName) ? lpClassName : 0,
nMaxCount);
return Result;
}
@@ -292,6 +322,8 @@ GetClassWord(
* NOTE: Obsoleted in 32-bit windows
*/
{
TRACE("%p %x\n", hWnd, nIndex);
if ((nIndex < 0) && (nIndex != GCW_ATOM))
return 0;
@@ -614,6 +646,10 @@ RegisterClassExA(CONST WNDCLASSEXA *lpwcx)
REGISTERCLASS_ANSI,
hMenu);
TRACE("atom=%04x wndproc=%p hinst=%p bg=%p style=%08x clsExt=%d winExt=%d class=%p\n",
Atom, lpwcx->lpfnWndProc, lpwcx->hInstance, lpwcx->hbrBackground,
lpwcx->style, lpwcx->cbClsExtra, lpwcx->cbWndExtra, WndClass);
if (!IS_INTRESOURCE(WndClass.lpszMenuName))
RtlFreeUnicodeString(&MenuName);
if (!IS_ATOM(WndClass.lpszClassName))
@@ -628,6 +664,7 @@ RegisterClassExA(CONST WNDCLASSEXA *lpwcx)
ATOM STDCALL
RegisterClassExW(CONST WNDCLASSEXW *lpwcx)
{
ATOM Atom;
WNDCLASSEXW WndClass;
UNICODE_STRING ClassName;
UNICODE_STRING MenuName = {0};
@@ -695,12 +732,18 @@ RegisterClassExW(CONST WNDCLASSEXW *lpwcx)
RtlInitUnicodeString(&ClassName, WndClass.lpszClassName);
}
return (ATOM)NtUserRegisterClassEx(&WndClass,
Atom = (ATOM)NtUserRegisterClassEx(&WndClass,
&ClassName,
&MenuName,
NULL,
0,
hMenu);
TRACE("atom=%04x wndproc=%p hinst=%p bg=%p style=%08x clsExt=%d winExt=%d class=%p\n",
Atom, lpwcx->lpfnWndProc, lpwcx->hInstance, lpwcx->hbrBackground,
lpwcx->style, lpwcx->cbClsExtra, lpwcx->cbWndExtra, WndClass);
return Atom;
}
/*
@@ -753,6 +796,8 @@ SetClassLongA (HWND hWnd,
BOOL Allocated = FALSE;
DWORD Ret;
TRACE("%p %d %lx\n", hWnd, nIndex, dwNewLong);
/* FIXME - portability!!!! */
if (nIndex == GCL_MENUNAME && lpStr != NULL)
@@ -818,6 +863,8 @@ SetClassLongW(HWND hWnd,
PWSTR lpStr = (PWSTR)dwNewLong;
UNICODE_STRING Value = {0};
TRACE("%p %d %lx\n", hWnd, nIndex, dwNewLong);
/* FIXME - portability!!!! */
if (nIndex == GCL_MENUNAME && lpStr != NULL)
@@ -913,6 +960,11 @@ UnregisterClassA(
NTSTATUS Status;
BOOL Ret;
TRACE("class/atom: %s/%04x %p\n",
IS_ATOM(lpClassName) ? NULL : lpClassName,
IS_ATOM(lpClassName) ? lpClassName : 0,
hInstance);
if (!IS_ATOM(lpClassName))
{
Status = HEAP_strdupAtoW(&ClassName.Buffer, lpClassName, NULL);
@@ -949,6 +1001,11 @@ UnregisterClassW(
{
UNICODE_STRING ClassName = {0};
TRACE("class/atom: %S/%04x %p\n",
IS_ATOM(lpClassName) ? NULL : lpClassName,
IS_ATOM(lpClassName) ? lpClassName : 0,
hInstance);
if (!IS_ATOM(lpClassName))
{
RtlInitUnicodeString(&ClassName,