Support GCW_ATOM in GetClassLong.

svn path=/trunk/; revision=17943
This commit is contained in:
Filip Navara 2005-09-20 09:28:49 +00:00
parent 86ae753de1
commit 7936d2bbcf

View file

@ -527,6 +527,9 @@ IntGetClassLong(struct _WINDOW_OBJECT *Window, ULONG Offset, BOOL Ansi)
Ret = (ULONG)Window->Class->lpfnWndProcW;
}
break;
case GCW_ATOM:
Ret = Window->Class->Atom;
break;
default:
Ret = 0;
break;