mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed GetWindowWord()
svn path=/trunk/; revision=5439
This commit is contained in:
parent
ec326fe1d6
commit
1e452928ca
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: class.c,v 1.23 2003/08/06 15:38:13 fireball Exp $
|
||||
/* $Id: class.c,v 1.24 2003/08/06 16:37:28 fireball Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -184,7 +184,7 @@ GetWindowLongW(HWND hWnd, int nIndex)
|
|||
WORD STDCALL
|
||||
GetWindowWord(HWND hWnd, int nIndex)
|
||||
{
|
||||
return (WORD)NtUserGetWindowLong(hWnd, nIndex);
|
||||
return (WORD)NtUserGetWindowLong(hWnd, nIndex, TRUE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue