mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 08:15:41 +00:00
Type casting for compiling USER32. What did break it?
svn path=/trunk/; revision=7988
This commit is contained in:
parent
1dd7917966
commit
6004fa9998
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: window.c,v 1.97 2004/02/02 00:18:58 rcampbell Exp $
|
||||
/* $Id: window.c,v 1.98 2004/02/02 11:46:41 ea Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -162,7 +162,7 @@ HWND STDCALL
|
|||
ChildWindowFromPoint(HWND hWndParent,
|
||||
POINT Point)
|
||||
{
|
||||
return NtUserChildWindowFromPointEx(hWndParent, Point.x, Point.y, 0);
|
||||
return (HWND) NtUserChildWindowFromPointEx(hWndParent, Point.x, Point.y, 0);
|
||||
}
|
||||
|
||||
|
||||
|
@ -174,7 +174,7 @@ ChildWindowFromPointEx(HWND hwndParent,
|
|||
POINT pt,
|
||||
UINT uFlags)
|
||||
{
|
||||
return NtUserChildWindowFromPointEx(hwndParent, pt.x, pt.y, uFlags);
|
||||
return (HWND) NtUserChildWindowFromPointEx(hwndParent, pt.x, pt.y, uFlags);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue