###User Defined Function###
_WinAPI_ClientToScreen

###Description###
Converts the client coordinates of a specified point to screen coordinates

###Syntax###
#include <WinAPI.au3>
_WinAPI_ClientToScreen ( $hWnd, ByRef $tPoint )


###Parameters###
@@ParamTable@@
$hWnd
	Identifies the window that will be used for the conversion
$tPoint
	$tagPOINT structure that contains the client coordinates to be converted
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	a $tagPOINT .
Failure:	sets the @error flag to non-zero.
@@End@@


###Remarks###
The function replaces the client coordinates in the $tagPOINT structure with the screen coordinates.
The screen coordinates are relative to the upper-left corner of the screen.


###Related###
_WinAPI_ScreenToClient, $tagPOINT


###See Also###
@@MsdnLink@@ ClientToScreen


###Example###
@@IncludeExample@@
