###User Defined Function###
_WinAPI_FrameRect

###Description###
Draws a border around the specified rectangle by using the specified brush

###Syntax###
#include <WinAPI.au3>
_WinAPI_FrameRect ( $hDC, $pRECT, $hBrush )


###Parameters###
@@ParamTable@@
$hDC
	Handle to the device context in which the border is drawn
$pRECT
	Pointer to a $tagRECT structure that contains the logical coordinates of the upper-left and lower-right corners of the rectangle
$hBrush
	Handle to the brush used to draw the border
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True
Failure:	False
@@End@@


###Remarks###
The brush identified by the $hBrush parameter must have been created by using the <a href="_WinAPI_CreateSolidBrush.htm">_WinAPI_CreateSolidBrush()</a> function, or retrieved by using the <a href="_WinAPI_GetStockObject.htm">_WinAPI_GetStockObject()</a> function


###Related###
$tagRECT


###See Also###
@@MsdnLink@@ FrameRect
