Implemented ClientToScreen

svn path=/trunk/; revision=5221
This commit is contained in:
James Tabor 2003-07-23 04:52:44 +00:00
parent 67939b3b7b
commit 8b30a5168c
2 changed files with 13 additions and 16 deletions

View file

@ -1,4 +1,4 @@
/* $Id: stubs.c,v 1.25 2003/07/10 21:04:31 chorns Exp $
/* $Id: stubs.c,v 1.26 2003/07/23 04:52:44 jimtabor Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
@ -105,20 +105,6 @@ CheckRadioButton(
}
/*
* @unimplemented
*/
WINBOOL
STDCALL
ClientToScreen(
HWND hWnd,
LPPOINT lpPoint)
{
UNIMPLEMENTED;
return FALSE;
}
/*
* @unimplemented
*/

View file

@ -1,4 +1,4 @@
/* $Id: window.c,v 1.43 2003/07/10 21:04:32 chorns Exp $
/* $Id: window.c,v 1.44 2003/07/23 04:52:44 jimtabor Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll
@ -1507,4 +1507,15 @@ ScreenToClient(HWND hWnd, LPPOINT lpPoint)
return(MapWindowPoints(NULL, hWnd, lpPoint, 1));
}
/*
* @implemented
*/
WINBOOL STDCALL
ClientToScreen(HWND hWnd, LPPOINT lpPoint)
{
return (MapWindowPoints( hWnd, NULL, lpPoint, 1 ));
}
/* EOF */