- Fix size returned by NtUserGetClassInfo.

svn path=/trunk/; revision=12352
This commit is contained in:
Filip Navara
2004-12-26 23:54:54 +00:00
parent e4514c3fed
commit f6f130ea4b

View File

@@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: class.c,v 1.64 2004/12/24 17:45:58 weiden Exp $
/* $Id: class.c,v 1.65 2004/12/26 23:54:54 navaraf Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@@ -158,7 +158,7 @@ NtUserGetClassInfo(
return 0;
}
lpWndClassEx->cbSize = sizeof(LPWNDCLASSEXW);
lpWndClassEx->cbSize = sizeof(WNDCLASSEXW);
lpWndClassEx->style = Class->style;
if (Ansi)
lpWndClassEx->lpfnWndProc = Class->lpfnWndProcA;